Fix bug #1957165 - MM: render_mode is broken.

svn-id: r31862
This commit is contained in:
Travis Howell 2008-05-04 13:36:41 +00:00
parent 09b0f12852
commit f09f10bea5

View File

@ -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;