From 1f6e545a397d4e3903c5326c773b15b60119123a Mon Sep 17 00:00:00 2001 From: Asdow <20314541+Asdow@users.noreply.github.com> Date: Thu, 25 Sep 2025 23:25:39 +0300 Subject: [PATCH] Make enemy battle sound respect speech volume setting --- Tactical/Soldier Control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tactical/Soldier Control.cpp b/Tactical/Soldier Control.cpp index fdcc1c0e..242b7721 100644 --- a/Tactical/Soldier Control.cpp +++ b/Tactical/Soldier Control.cpp @@ -11141,7 +11141,7 @@ BOOLEAN SOLDIERTYPE::InternalDoMercBattleSound( UINT8 ubBattleSoundID, INT8 bSpe { if( ubBattleSoundID == BATTLE_SOUND_CURSE1 ) spParms.uiVolume = (INT8)CalculateSpeechVolume( MIDVOLUME ); - else + else if ( GetSpeechVolume() != 0 ) spParms.uiVolume = SoundVolume( (UINT8)spParms.uiVolume, pSoldier->sGridNo ); }