aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2008-05-04 13:36:41 +0000
committerTravis Howell2008-05-04 13:36:41 +0000
commitf09f10bea5c23f50732edf145403627739a521c8 (patch)
treea2abd1ce0f4b5902374c9fe5014183377925d0ee /engines
parent09b0f128528b4839668ccd51ae6794ad2cd85d5c (diff)
downloadscummvm-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')
-rw-r--r--engines/scumm/scumm.cpp2
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;