diff options
author | Travis Howell | 2002-11-24 13:05:44 +0000 |
---|---|---|
committer | Travis Howell | 2002-11-24 13:05:44 +0000 |
commit | f63dda7ecfca45ffc0fecc69c7315e8b1f1ffd4f (patch) | |
tree | 4a47bee7c6ad62b1f37b01ff6e262bc978e727bf /simon/simon.cpp | |
parent | 90982259101d70f561838213b6a66b36bbe01e84 (diff) | |
download | scummvm-rg350-f63dda7ecfca45ffc0fecc69c7315e8b1f1ffd4f.tar.gz scummvm-rg350-f63dda7ecfca45ffc0fecc69c7315e8b1f1ffd4f.tar.bz2 scummvm-rg350-f63dda7ecfca45ffc0fecc69c7315e8b1f1ffd4f.zip |
Add back changes that were reverted by mistake
svn-id: r5707
Diffstat (limited to 'simon/simon.cpp')
-rw-r--r-- | simon/simon.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index b05fd0b5ed..9883536fb0 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4484,7 +4484,12 @@ void SimonState::go() _mainscript_toggle = false; _vgascript_toggle = false; - _vk_t_toggle = false; + + if (!_voice) { + _vk_t_toggle = true; + } else { + _vk_t_toggle = false; + } while (1) { hitarea_stuff(); |