From 59b0bf8fa152cede9c3fc27b36b138629050a086 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 24 Mar 2008 06:48:09 +0000 Subject: Correct background color when displaying saved game list in Amiga versions of Simon the Sorcerer 1. svn-id: r31230 --- engines/agos/window.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'engines/agos') 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; } -- cgit v1.2.3