aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorEugene Sandulenko2005-02-20 01:50:18 +0000
committerEugene Sandulenko2005-02-20 01:50:18 +0000
commit47400c1932451009c58b07df53a53621ad655879 (patch)
treee6d5ce390e7cc208711ffa929fda5989a2eaf88e /scumm
parentb4780deac60054b515d28a124710e3da39301544 (diff)
downloadscummvm-rg350-47400c1932451009c58b07df53a53621ad655879.tar.gz
scummvm-rg350-47400c1932451009c58b07df53a53621ad655879.tar.bz2
scummvm-rg350-47400c1932451009c58b07df53a53621ad655879.zip
Restrict CGA/EGA/Hercules dithering to PC only.
svn-id: r16819
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scumm.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 8fac59868a..d70d78f74f 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1005,6 +1005,9 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
}
// Do some render mode restirctions
+ if (_renderMode != Common::kRenderDefault && !(_features & GF_PC))
+ _renderMode = Common::kRenderDefault;
+
switch (_renderMode) {
case Common::kRenderHerc:
if (_version > 2 && _gameId != GID_MONKEY_EGA)