mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 23:43:10 +00:00
The background sounds option, only applies to Simon the Sorcerer 2.
svn-id: r38518
This commit is contained in:
parent
60094239df
commit
030f8b2e4a
2
README
2
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
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user