aboutsummaryrefslogtreecommitdiff
path: root/simon/items.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-09-26 05:34:52 +0000
committerTravis Howell2003-09-26 05:34:52 +0000
commitc03b99eab6367c22d6a7fced806690e23ae3baa2 (patch)
treed37d19f441dd39500612608af5cb58e8f20ecb25 /simon/items.cpp
parent68c060405ce04ba34cb0252498e54ab77d57cc4b (diff)
downloadscummvm-rg350-c03b99eab6367c22d6a7fced806690e23ae3baa2.tar.gz
scummvm-rg350-c03b99eab6367c22d6a7fced806690e23ae3baa2.tar.bz2
scummvm-rg350-c03b99eab6367c22d6a7fced806690e23ae3baa2.zip
Small correction for simon1/2 Hebrew
svn-id: r10411
Diffstat (limited to 'simon/items.cpp')
-rw-r--r--simon/items.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/simon/items.cpp b/simon/items.cpp
index 947bf4cf88..02d738041b 100644
--- a/simon/items.cpp
+++ b/simon/items.cpp
@@ -1490,9 +1490,15 @@ void SimonEngine::o_unk_132_helper_2(FillOrCopyStruct *fcs, int x) {
old_text = fcs->text_color;
fcs->text_color = fcs->fill_color;
- x += 120;
- if (x != 128)
- x = 129;
+ if (_language == 20) { //Hebrew
+ x = 128;
+ } else {
+ x += 120;
+ if (x != 128)
+ x = 129;
+
+ }
+
video_putchar(fcs, x);
fcs->text_color = old_text;