diff --git a/Adventures in Lestoria/Audio.cpp b/Adventures in Lestoria/Audio.cpp index 5c0ebde0..a0349539 100644 --- a/Adventures in Lestoria/Audio.cpp +++ b/Adventures in Lestoria/Audio.cpp @@ -382,6 +382,7 @@ void Audio::SetBGMVolume(float vol){ UpdateBGMVolume(); } void Audio::SetBGMPitch(float pitch){ + if(game->TestingModeEnabled())return; BGM&track=Self().bgm[Self().playParams.sound]; for(int channelListIndex=0;int trackID:track.GetChannelIDs()){ Engine().SetPitch(trackID,pitch); diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index 49ce4270..02dd97f7 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -39,7 +39,7 @@ All rights reserved. #define VERSION_MAJOR 1 #define VERSION_MINOR 3 #define VERSION_PATCH 0 -#define VERSION_BUILD 11562 +#define VERSION_BUILD 11564 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index bc6cc6ef..fd506bb6 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ