From 0031c41db855ac4bebd05ca1b2c1fa6694242979 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 2 May 2013 18:26:58 -0400 Subject: COMMON: Change kPlatformPC to kPlatformDOS "PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. --- engines/queen/display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/queen/display.cpp') diff --git a/engines/queen/display.cpp b/engines/queen/display.cpp index d7b20c203e..7437bab974 100644 --- a/engines/queen/display.cpp +++ b/engines/queen/display.cpp @@ -167,7 +167,7 @@ void Display::palSet(const uint8 *pal, int start, int end, bool updateScreen) { } void Display::palSetJoeDress() { - if (_vm->resource()->getPlatform() == Common::kPlatformPC) { + if (_vm->resource()->getPlatform() == Common::kPlatformDOS) { memcpy(_pal.room + 144 * 3, _palJoeDress, 16 * 3); memcpy(_pal.screen + 144 * 3, _palJoeDress, 16 * 3); palSet(_pal.screen, 144, 159, true); @@ -175,7 +175,7 @@ void Display::palSetJoeDress() { } void Display::palSetJoeNormal() { - if (_vm->resource()->getPlatform() == Common::kPlatformPC) { + if (_vm->resource()->getPlatform() == Common::kPlatformDOS) { memcpy(_pal.room + 144 * 3, _palJoeClothes, 16 * 3); memcpy(_pal.screen + 144 * 3, _palJoeClothes, 16 * 3); palSet(_pal.screen, 144, 159, true); -- cgit v1.2.3