aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui_v2.cpp
diff options
context:
space:
mode:
authorFlorian Kagerer2008-04-16 19:43:56 +0000
committerFlorian Kagerer2008-04-16 19:43:56 +0000
commit00dde660e32d6d0788f5588322417b5e5ea7444c (patch)
tree8a83d40ed7bd2cef1af3f30530132f6fbd54a44d /engines/kyra/gui_v2.cpp
parentaf4b21a112189df1c86d2e4c4f65e849f6b2346d (diff)
downloadscummvm-rg350-00dde660e32d6d0788f5588322417b5e5ea7444c.tar.gz
scummvm-rg350-00dde660e32d6d0788f5588322417b5e5ea7444c.tar.bz2
scummvm-rg350-00dde660e32d6d0788f5588322417b5e5ea7444c.zip
fix sjis text color (ship scene)
svn-id: r31517
Diffstat (limited to 'engines/kyra/gui_v2.cpp')
-rw-r--r--engines/kyra/gui_v2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/gui_v2.cpp b/engines/kyra/gui_v2.cpp
index 80b54116ce..2e16de5112 100644
--- a/engines/kyra/gui_v2.cpp
+++ b/engines/kyra/gui_v2.cpp
@@ -875,7 +875,7 @@ void KyraEngine_v2::bookPrintText(int dstPage, const uint8 *str, int x, int y, u
_screen->_charWidth = -2;
_screen->hideMouse();
- _screen->printText((const char*)str, x, y, color, (_flags.lang == Common::JA_JPN) ? 0x80 : 0);
+ _screen->printText((const char*)str, x, y, color, (_flags.lang == Common::JA_JPN) ? 0xf6 : 0);
_screen->showMouse();
_screen->_charWidth = 0;