Optional subtitles in Simon 1 (unsupported)
Use subtitles by default in all except English and German versions svn-id: r6572
This commit is contained in:
parent
5c94c996ed
commit
32be9261fc
1 changed files with 7 additions and 3 deletions
|
@ -3237,8 +3237,9 @@ void SimonState::processSpecialKeys()
|
|||
break;
|
||||
|
||||
case 't':
|
||||
if (_game & GAME_SIMON2)
|
||||
_vk_t_toggle ^= 1;
|
||||
_vk_t_toggle ^= 1;
|
||||
if (_game == GAME_SIMON1TALKIE || _game == GAME_SIMON1WIN && _vk_t_toggle)
|
||||
warning("Many subtitles are missing in Simon 1 talkie/win data files");
|
||||
break;
|
||||
|
||||
case '+':
|
||||
|
@ -4699,11 +4700,14 @@ void SimonState::go()
|
|||
if (_debugLevel == 4)
|
||||
_start_mainscript = true;
|
||||
|
||||
if (_sound->hasVoice() && _language != 20) {
|
||||
if (_sound->hasVoice()) {
|
||||
_vk_t_toggle = false;
|
||||
} else {
|
||||
_vk_t_toggle = true;
|
||||
}
|
||||
//Only English and German voice files were produced
|
||||
if (_language >= 2)
|
||||
_vk_t_toggle = true;
|
||||
|
||||
midi._midi_sfx_toggle = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue