The background sounds option, only applies to Simon the Sorcerer 2.

svn-id: r38518
This commit is contained in:
Travis Howell 2009-02-19 00:08:35 +00:00
parent 60094239df
commit 030f8b2e4a
2 changed files with 4 additions and 2 deletions

2
README
View File

@ -1122,6 +1122,7 @@ other games.
m - Music on/off
s - Sound effects on/off
b - Background sounds on/off
[Simon the Sorcerer 2 only]
p - Pauses
t - Switch between speech and subtitles
v - Switch between subtitles only and
@ -1143,7 +1144,6 @@ other games.
F7 - Switch characters
F9 - Hitbox names on/off
s - Sound effects on/off
b - Background sounds on/off
p - Pauses
t - Switch between speech and subtitles
v - Switch between subtitles only and

View File

@ -594,7 +594,9 @@ bool AGOSEngine::processSpecialKeys() {
}
break;
case Common::KEYCODE_b:
_sound->ambientPause(_ambientPaused ^= 1);
if (getGameType() == GType_SIMON2) {
_sound->ambientPause(_ambientPaused ^= 1);
}
break;
case Common::KEYCODE_r:
if (_debugMode)