aboutsummaryrefslogtreecommitdiff
path: root/engines/agos
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agos')
-rw-r--r--engines/agos/window.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/agos/window.cpp b/engines/agos/window.cpp
index a9331bbc40..f59af0daaa 100644
--- a/engines/agos/window.cpp
+++ b/engines/agos/window.cpp
@@ -77,6 +77,9 @@ WindowBlock *AGOSEngine::openWindow(uint x, uint y, uint w, uint h, uint flags,
if (getGameType() == GType_ELVIRA1 || getGameType() == GType_ELVIRA2 || getGameType() == GType_WW)
clearWindow(window);
+ if (getGameType() == GType_SIMON1 && getPlatform() == Common::kPlatformAmiga && window->fill_color == 225)
+ window->fill_color = (getFeatures() & GF_32COLOR) ? 17 : 241;
+
return window;
}