diff options
author | Eugene Sandulenko | 2007-07-25 16:12:19 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-07-25 16:12:19 +0000 |
commit | 4f403f4dd356693b1ca3ef02d3b17ef8fef118e7 (patch) | |
tree | 310f9d0026d5503a561aa76e2e0de487352d7542 /engines/gob | |
parent | 983306c1525f4a43a10e6d23b6d1cc3b59fbb8ce (diff) | |
download | scummvm-rg350-4f403f4dd356693b1ca3ef02d3b17ef8fef118e7.tar.gz scummvm-rg350-4f403f4dd356693b1ca3ef02d3b17ef8fef118e7.tar.bz2 scummvm-rg350-4f403f4dd356693b1ca3ef02d3b17ef8fef118e7.zip |
Use default to 1x scaler for 640x480 games to avoid superbig resolutions.
svn-id: r28197
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/gob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index faec700145..18cbb9f551 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -146,8 +146,8 @@ int GobEngine::init() { } _system->beginGFXTransaction(); - initCommonGFX(false); _system->initSize(_width, _height); + initCommonGFX(is640()); _system->endGFXTransaction(); // On some systems it's not safe to run CD audio games from the CD. |