diff --git a/src/sdl/i_video.c b/src/sdl/i_video.c index 2858e9b6f..ba0f7f1df 100644 --- a/src/sdl/i_video.c +++ b/src/sdl/i_video.c @@ -624,8 +624,7 @@ static void Impl_HandleWindowEvent(SDL_WindowEvent evt) // Tell game we got focus back, resume music if necessary window_notinfocus = false; - if (!paused) - S_InitMusicVolume(); + S_InitMusicVolume(); if (cv_gamesounds.value) S_EnableSound(); diff --git a/src/win32/Makefile.cfg b/src/win32/Makefile.cfg index e9e18280b..6286a18bf 100644 --- a/src/win32/Makefile.cfg +++ b/src/win32/Makefile.cfg @@ -164,3 +164,7 @@ else endif LIBS+=-ldiscord-rpc endif + +ifndef MINGW64 + LDFLAGS+=-Wl,--large-address-aware +endif