diff options
author | Travis Howell | 2003-02-10 12:22:54 +0000 |
---|---|---|
committer | Travis Howell | 2003-02-10 12:22:54 +0000 |
commit | 3e5da6a2f5e22ebc3b8dc4b3d37743b108c371b5 (patch) | |
tree | 1ad8364e51deab9f20805e8837b96b80d4dc91e8 | |
parent | ef67537f094e456c6fa7fc8bdec5b3b0954f9243 (diff) | |
download | scummvm-rg350-3e5da6a2f5e22ebc3b8dc4b3d37743b108c371b5.tar.gz scummvm-rg350-3e5da6a2f5e22ebc3b8dc4b3d37743b108c371b5.tar.bz2 scummvm-rg350-3e5da6a2f5e22ebc3b8dc4b3d37743b108c371b5.zip |
Was bad idea to enable this in Simon 1
svn-id: r6597
-rw-r--r-- | simon/simon.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 333a32429a..8dcfaaa3b8 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -3237,9 +3237,8 @@ void SimonState::processSpecialKeys() break; case 't': - _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"); + if (_game & GAME_SIMON2) + _vk_t_toggle ^= 1; break; case '+': |