aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--engines/agos/input.cpp4
2 files changed, 4 insertions, 2 deletions
diff --git a/README b/README
index 0c78155064..f3e42bf41e 100644
--- a/README
+++ b/README
@@ -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
diff --git a/engines/agos/input.cpp b/engines/agos/input.cpp
index 9017d42a58..f564bd4df9 100644
--- a/engines/agos/input.cpp
+++ b/engines/agos/input.cpp
@@ -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)