diff options
author | Travis Howell | 2008-05-04 13:36:41 +0000 |
---|---|---|
committer | Travis Howell | 2008-05-04 13:36:41 +0000 |
commit | f09f10bea5c23f50732edf145403627739a521c8 (patch) | |
tree | a2abd1ce0f4b5902374c9fe5014183377925d0ee /engines/scumm | |
parent | 09b0f128528b4839668ccd51ae6794ad2cd85d5c (diff) | |
download | scummvm-rg350-f09f10bea5c23f50732edf145403627739a521c8.tar.gz scummvm-rg350-f09f10bea5c23f50732edf145403627739a521c8.tar.bz2 scummvm-rg350-f09f10bea5c23f50732edf145403627739a521c8.zip |
Fix bug #1957165 - MM: render_mode is broken.
svn-id: r31862
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/scumm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 8bb5bcb6ef..7c412970bb 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -495,7 +495,7 @@ ScummEngine::ScummEngine(OSystem *syst, const DetectorResult &dr) case Common::kRenderCGA: case Common::kRenderEGA: case Common::kRenderAmiga: - if (!(_game.features & GF_16COLOR)) + if ((_game.version >= 4 && !(_game.features & GF_16COLOR)) || (_game.features & GF_OLD256)) _renderMode = Common::kRenderDefault; break; |