mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-27 11:20:40 +00:00
Spacing
svn-id: r11009
This commit is contained in:
parent
a1e794d920
commit
28823a2b2a
2
README
2
README
@ -516,7 +516,7 @@ simon games.
|
||||
m - Music on/off
|
||||
s - Sound effects on/off
|
||||
b - Background sounds on/off
|
||||
t - Switch between speech and subtitles
|
||||
t - Switch between speech and subtitles
|
||||
v - Switch between subtitles only and
|
||||
combined speech & subtitles.
|
||||
[Simon the Sorcerer 2 only]
|
||||
|
@ -3451,12 +3451,12 @@ void SimonEngine::processSpecialKeys() {
|
||||
_exit_cutscene = true;
|
||||
break;
|
||||
case 't':
|
||||
if ((_game & GF_SIMON2 && _game & GF_TALKIE) ||( _game & GF_TALKIE && _language > 1))
|
||||
if ((_game & GF_SIMON2 && _game & GF_TALKIE) || ( _game & GF_TALKIE && _language > 1))
|
||||
if (_speech)
|
||||
_subtitles ^= 1;
|
||||
break;
|
||||
case 'v':
|
||||
if (_game & GF_SIMON2 && _game & GF_TALKIE)
|
||||
if ((_game & GF_SIMON2) && (_game & GF_TALKIE))
|
||||
if (_subtitles)
|
||||
_speech ^= 1;
|
||||
case '+':
|
||||
|
Loading…
Reference in New Issue
Block a user