diff options
author | Travis Howell | 2008-03-24 06:48:09 +0000 |
---|---|---|
committer | Travis Howell | 2008-03-24 06:48:09 +0000 |
commit | 59b0bf8fa152cede9c3fc27b36b138629050a086 (patch) | |
tree | 0b479efbee85e61b1bbc8109b9af572aa3a8e289 /engines | |
parent | 47ad2487b4bd46fcb3ad249710b7bfca01744e3e (diff) | |
download | scummvm-rg350-59b0bf8fa152cede9c3fc27b36b138629050a086.tar.gz scummvm-rg350-59b0bf8fa152cede9c3fc27b36b138629050a086.tar.bz2 scummvm-rg350-59b0bf8fa152cede9c3fc27b36b138629050a086.zip |
Correct background color when displaying saved game list in Amiga versions of Simon the Sorcerer 1.
svn-id: r31230
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/window.cpp | 3 |
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; } |