diff options
author | dhewg | 2011-02-25 20:40:32 +0100 |
---|---|---|
committer | dhewg | 2011-02-25 20:49:48 +0100 |
commit | a441069a4983f3a2b3c6402f1c8697003415fa55 (patch) | |
tree | 1deb1a534e519943323d6f030e721b8a56c8f68f /backends/graphics/opengl | |
parent | 93fdcbfa05f6cd19137d43b6e6828abacb6137dd (diff) | |
download | scummvm-rg350-a441069a4983f3a2b3c6402f1c8697003415fa55.tar.gz scummvm-rg350-a441069a4983f3a2b3c6402f1c8697003415fa55.tar.bz2 scummvm-rg350-a441069a4983f3a2b3c6402f1c8697003415fa55.zip |
OPENGL: Reset the scale on mode changes
Resets defaultTo1XScaler when going back to the launcher
Diffstat (limited to 'backends/graphics/opengl')
-rw-r--r-- | backends/graphics/opengl/opengl-graphics.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.cpp b/backends/graphics/opengl/opengl-graphics.cpp index f8e1937858..8299745776 100644 --- a/backends/graphics/opengl/opengl-graphics.cpp +++ b/backends/graphics/opengl/opengl-graphics.cpp @@ -136,6 +136,8 @@ int OpenGLGraphicsManager::getDefaultGraphicsMode() const { bool OpenGLGraphicsManager::setGraphicsMode(int mode) { assert(_transactionMode == kTransactionActive); + setScale(2); + if (_oldVideoMode.setup && _oldVideoMode.mode == mode) return true; |