diff options
author | Eugene Sandulenko | 2005-02-20 01:50:18 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-02-20 01:50:18 +0000 |
commit | 47400c1932451009c58b07df53a53621ad655879 (patch) | |
tree | e6d5ce390e7cc208711ffa929fda5989a2eaf88e | |
parent | b4780deac60054b515d28a124710e3da39301544 (diff) | |
download | scummvm-rg350-47400c1932451009c58b07df53a53621ad655879.tar.gz scummvm-rg350-47400c1932451009c58b07df53a53621ad655879.tar.bz2 scummvm-rg350-47400c1932451009c58b07df53a53621ad655879.zip |
Restrict CGA/EGA/Hercules dithering to PC only.
svn-id: r16819
-rw-r--r-- | scumm/scumm.cpp | 3 |
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) |