diff options
author | Travis Howell | 2003-07-25 08:49:54 +0000 |
---|---|---|
committer | Travis Howell | 2003-07-25 08:49:54 +0000 |
commit | 9937e18ba5801f124c056bd7d28077a463580917 (patch) | |
tree | 85dc8ea9a769678fb50267eaf4abb44f9a5912e6 | |
parent | 9bb773c67d093c5551904d3ee3c9e424e133f20c (diff) | |
download | scummvm-rg350-9937e18ba5801f124c056bd7d28077a463580917.tar.gz scummvm-rg350-9937e18ba5801f124c056bd7d28077a463580917.tar.bz2 scummvm-rg350-9937e18ba5801f124c056bd7d28077a463580917.zip |
Surprised this has not caused major problems
svn-id: r9188
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index de53d1a1cd..d0ff610b00 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -2078,7 +2078,7 @@ void SimonEngine::o_print_str() { if (speech_id != 0 && !_subtitles) return; - if (speech_id == 0) + if ((_game & GF_TALKIE) && (speech_id == 0)) o_kill_sprite_simon2(2, num_1 + 2); talk_with_text(num_1, num_2, (const char *)string_ptr, tv->a, tv->b, tv->c); |