diff options
-rw-r--r-- | engines/agos/icons.cpp | 2 | ||||
-rw-r--r-- | engines/agos/verb.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/engines/agos/icons.cpp b/engines/agos/icons.cpp index bf72277d4a..5fcf4f66a0 100644 --- a/engines/agos/icons.cpp +++ b/engines/agos/icons.cpp @@ -680,7 +680,7 @@ void AGOSEngine_Simon1::addArrows(WindowBlock *window) { // TODO: Manually draws arrows } else { stopAnimate(128); - uint8 palette = (getGameId() == GID_SIMON1CD32) ? 15: 14; + uint8 palette = (getPlatform() == Common::kPlatformAmiga) ? 15: 14; animate(0, 1, 128, 0, 0, palette); } } diff --git a/engines/agos/verb.cpp b/engines/agos/verb.cpp index fcf1091576..645010f369 100644 --- a/engines/agos/verb.cpp +++ b/engines/agos/verb.cpp @@ -855,8 +855,6 @@ void AGOSEngine::invertBox(HitArea * ha, byte a, byte b, byte c, byte d) { if (!(color & 0xF) || (color & 0xF) == 10) { color ^= 10; src[i] = color; - } else { - printf("Color %d %d\n", color, color & 0xF); } } else if (getGameType() == GType_ELVIRA2) { if (!(color & 1)) { |