diff options
author | Max Horn | 2008-10-02 17:48:01 +0000 |
---|---|---|
committer | Max Horn | 2008-10-02 17:48:01 +0000 |
commit | 3248906156d6fa2bb01c4bfa527aaba379456705 (patch) | |
tree | 0e6b02e3e7324eae9a71fbf02524cedf57c46f4e /engines/parallaction | |
parent | c77124ff50dee8864a94a31b4a0f2a588daed445 (diff) | |
download | scummvm-rg350-3248906156d6fa2bb01c4bfa527aaba379456705.tar.gz scummvm-rg350-3248906156d6fa2bb01c4bfa527aaba379456705.tar.bz2 scummvm-rg350-3248906156d6fa2bb01c4bfa527aaba379456705.zip |
Engine class changed:
- Moved initCommonGFX() && GUIErrorMessage() out of class Engine
- got rid of the _autosavePeriod member (this prevented users from
changing the autosave period during runtime)
- Got rid of an evil 'using GUI::Dialog' statement
- Clarified some Doxygen comments
svn-id: r34720
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/graphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp index 2bd3935f01..5526ecc64d 100644 --- a/engines/parallaction/graphics.cpp +++ b/engines/parallaction/graphics.cpp @@ -750,8 +750,8 @@ Gfx::Gfx(Parallaction* vm) : _vm(vm), _disk(vm->_disk) { _vm->_system->beginGFXTransaction(); - _vm->_system->initSize(_vm->_screenWidth, _vm->_screenHeight); - _vm->initCommonGFX(_vm->getGameType() == GType_BRA); + _vm->_system->initSize(_vm->_screenWidth, _vm->_screenHeight); + initCommonGFX(_vm->getGameType() == GType_BRA); _vm->_system->endGFXTransaction(); setPalette(_palette); |