diff options
| author | Travis Howell | 2009-02-19 00:08:35 +0000 | 
|---|---|---|
| committer | Travis Howell | 2009-02-19 00:08:35 +0000 | 
| commit | 030f8b2e4a88cd1095ae191220634272e16a518a (patch) | |
| tree | eff9de153f2405384d528f1a1f9e84abc8038ced | |
| parent | 60094239df23cd3fd41028f46a4857981081bf2a (diff) | |
| download | scummvm-rg350-030f8b2e4a88cd1095ae191220634272e16a518a.tar.gz scummvm-rg350-030f8b2e4a88cd1095ae191220634272e16a518a.tar.bz2 scummvm-rg350-030f8b2e4a88cd1095ae191220634272e16a518a.zip  | |
The background sounds option, only applies to Simon the Sorcerer 2.
svn-id: r38518
| -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)  | 
