From fb06b9217075c1c209f8ce3e928300dc2c6c6392 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Thu, 25 Jun 2009 23:03:57 +0000 Subject: Implement difference in PC98 version. (This actually breaks the text colors in the LoL intro for now...) svn-id: r41889 --- engines/kyra/script_tim.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'engines/kyra/script_tim.cpp') diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp index 6a53b16102..720489a08f 100644 --- a/engines/kyra/script_tim.cpp +++ b/engines/kyra/script_tim.cpp @@ -310,7 +310,8 @@ void TIMInterpreter::displayText(uint16 textId, int16 flags) { if (text[0] == '$') text = strchr(text + 1, '$') + 1; - setupTextPalette((flags < 0) ? 1 : flags, 0); + if (_vm->gameFlags().platform != Common::kPlatformPC98) + setupTextPalette((flags < 0) ? 1 : flags, 0); if (flags < 0) { static const uint8 colorMap[] = { 0x00, 0xF0, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; -- cgit v1.2.3