aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agos/gfx.cpp')
-rw-r--r--engines/agos/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/gfx.cpp b/engines/agos/gfx.cpp
index fbf7f416ed..db0817250b 100644
--- a/engines/agos/gfx.cpp
+++ b/engines/agos/gfx.cpp
@@ -1450,7 +1450,7 @@ void AGOSEngine::setWindowImage(uint16 mode, uint16 vgaSpriteId, bool specialCas
}
if (getGameType() == GType_PN && !_wiped && !specialCase) {
- uint8 color = (getPlatform() == Common::kPlatformPC) ? 7 : 15;
+ uint8 color = (getPlatform() == Common::kPlatformDOS) ? 7 : 15;
dst = (byte *)screen->pixels + 48;
memset(dst, color, 224);
@@ -1475,7 +1475,7 @@ void AGOSEngine::setWindowImage(uint16 mode, uint16 vgaSpriteId, bool specialCas
// Personal Nightmare specific
void AGOSEngine::drawEdging() {
byte *dst;
- uint8 color = (getPlatform() == Common::kPlatformPC) ? 7 : 15;
+ uint8 color = (getPlatform() == Common::kPlatformDOS) ? 7 : 15;
Graphics::Surface *screen = _system->lockScreen();