diff options
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/scumm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 4cb4b282e8..f33ca74b12 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1137,8 +1137,8 @@ Common::Error ScummEngine::init() { if (format != _system->getScreenFormat()) return Common::kUnsupportedColorMode; #else - if (_game.platform == Common::kPlatformFMTowns) { - warning("Starting game without the required 16bit color support.\nYou will experience severe color glitches"); + if (_game.platform == Common::kPlatformFMTowns && _game.version == 3) { + warning("Starting game without the required 16bit color support.\nYou may experience color glitches"); initGraphics(screenWidth, screenHeight, (screenWidth > 320)); } else { error("16bit color support is required for this game"); |