aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2003-07-22 12:09:56 +0000
committerTravis Howell2003-07-22 12:09:56 +0000
commit7d5214132910dceadf3de26f5dabc526c7b05056 (patch)
tree65bbfe56c2e4b5328bbf1c1037812c1ebceef82b /simon
parent6d9237509365f5d385e9c3fd80d44cac0bccfffe (diff)
downloadscummvm-rg350-7d5214132910dceadf3de26f5dabc526c7b05056.tar.gz
scummvm-rg350-7d5214132910dceadf3de26f5dabc526c7b05056.tar.bz2
scummvm-rg350-7d5214132910dceadf3de26f5dabc526c7b05056.zip
Fix simon1talkie regression
svn-id: r9118
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 9b82f39f66..fd942771a5 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -2058,7 +2058,7 @@ void SimonEngine::o_print_str() {
case GAME_SIMON1CD32:
if (speech_id != 0)
talk_with_speech(speech_id, num_1);
- if (string_ptr != NULL && _subtitles)
+ if ((speech_id == 0) || (string_ptr != NULL && _subtitles))
talk_with_text(num_1, num_2, (const char *)string_ptr, tv->a, tv->b, tv->c);
break;