aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2003-08-02 10:42:54 +0000
committerTravis Howell2003-08-02 10:42:54 +0000
commitec676d1581aa5a863b7b3c7b7e435aa9f0259f74 (patch)
treea778d080c9b5710ec08bf22b62f1e92bb963f350 /simon
parent40c3f25cd70e452a6a85e121a67112ec23d58e98 (diff)
downloadscummvm-rg350-ec676d1581aa5a863b7b3c7b7e435aa9f0259f74.tar.gz
scummvm-rg350-ec676d1581aa5a863b7b3c7b7e435aa9f0259f74.tar.bz2
scummvm-rg350-ec676d1581aa5a863b7b3c7b7e435aa9f0259f74.zip
My last commit caused regression
svn-id: r9402
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index 7e59c36f61..7574455d2a 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -2085,7 +2085,7 @@ void SimonEngine::o_print_str() {
if ((_game & GF_TALKIE) && (speech_id == 0))
o_kill_sprite_simon2(2, num_1 + 2);
- if (_subtitles)
+ if (_subtitles || speech_id == 0)
talk_with_text(num_1, num_2, (const char *)string_ptr, tv->a, tv->b, tv->c);
break;
}
@@ -2657,7 +2657,7 @@ restart:;
fcs->textRow = unk132_result;
- if (_language == 20) {
+ if (_language == 20) { //Hebrew
// init x offset with a 2 character savegame number + a period (18 pix)
fcs->textColumn = 3;
fcs->textColumnOffset = 6;
@@ -2674,7 +2674,7 @@ restart:;
// now process entire savegame name to get correct x offset for cursor
name_len = 0;
while (name[name_len]) {
- if (_language == 20) {
+ if (_language == 20) { //Hebrew
byte width = 6;
if (name[name_len] >= 64 && name[name_len] < 91)
width = _hebrew_char_widths [name[name_len]-64];