diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scumm.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 603699102c..e11ce829a8 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1040,16 +1040,12 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS _screenWidth = 320; _screenHeight = 240; } else if (_features & GF_DEFAULT_TO_1X_SCALER) { - // FIXME: a dirty hack. Currently this is checked before engine - // creation. - _system->setGraphicsMode("1x"); _screenWidth = 640; _screenHeight = 480; } else if (_features & GF_NES) { _screenWidth = 256; _screenHeight = 240; } else if (_renderMode == Common::kRenderHerc) { - _system->setGraphicsMode("1x"); _features |= GF_DEFAULT_TO_1X_SCALER; _screenWidth = 320; _screenHeight = 200; |