diff options
author | Johannes Schickel | 2008-11-14 22:08:10 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-11-14 22:08:10 +0000 |
commit | 5a0556f09ca89886fda55d333745a672ea14e022 (patch) | |
tree | 698d0162a6737c298f8c6d313209e18a056f7684 /engines/gob | |
parent | bb87d39424c9dee6fbfddf8b806a5675bcf39494 (diff) | |
download | scummvm-rg350-5a0556f09ca89886fda55d333745a672ea14e022.tar.gz scummvm-rg350-5a0556f09ca89886fda55d333745a672ea14e022.tar.bz2 scummvm-rg350-5a0556f09ca89886fda55d333745a672ea14e022.zip |
Committed my patch #2123680 "SDL: Backend transaction / rollback support".
svn-id: r35062
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/video.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/gob/video.cpp b/engines/gob/video.cpp index 30994cf4a7..361f8573d3 100644 --- a/engines/gob/video.cpp +++ b/engines/gob/video.cpp @@ -169,10 +169,7 @@ void Video::clearScreen() { } void Video::setSize(bool defaultTo1XScaler) { - _vm->_system->beginGFXTransaction(); - _vm->_system->initSize(_vm->_width, _vm->_height); - initCommonGFX(defaultTo1XScaler); - _vm->_system->endGFXTransaction(); + initGraphics(_vm->_width, _vm->_height, defaultTo1XScaler); } void Video::retrace(bool mouse) { |