diff options
author | Travis Howell | 2003-12-02 08:43:54 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-02 08:43:54 +0000 |
commit | d77b11aef6e514591e22196ac1cc63c91eb12eb2 (patch) | |
tree | 49574bd83444c82d72bab96fbcb5ed45b2be7961 | |
parent | 3cb4a1180e1724f0f17f85236e28eae720b3e87f (diff) | |
download | scummvm-rg350-d77b11aef6e514591e22196ac1cc63c91eb12eb2.tar.gz scummvm-rg350-d77b11aef6e514591e22196ac1cc63c91eb12eb2.tar.bz2 scummvm-rg350-d77b11aef6e514591e22196ac1cc63c91eb12eb2.zip |
Add back some missing code
svn-id: r11462
-rw-r--r-- | simon/simon.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 9851dbad17..e8d4fff924 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -2103,6 +2103,9 @@ void SimonEngine::o_print_str() { if (_speech && speech_id != 0) talk_with_speech(speech_id, vga_sprite_id); + if ((_game & GF_SIMON2) && (_game & GF_TALKIE) && speech_id == 0) + o_kill_sprite_simon2(2, vga_sprite_id + 2); + if (string_ptr != NULL && (speech_id == 0 || _subtitles)) talk_with_text(vga_sprite_id, color, (const char *)string_ptr, tv->a, tv->b, tv->c); |