diff options
| -rw-r--r-- | README | 2 | ||||
| -rw-r--r-- | engines/agos/input.cpp | 4 | 
2 files changed, 4 insertions, 2 deletions
@@ -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)  | 
