aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/graphics.cpp
diff options
context:
space:
mode:
authorMax Horn2008-10-02 17:48:01 +0000
committerMax Horn2008-10-02 17:48:01 +0000
commit3248906156d6fa2bb01c4bfa527aaba379456705 (patch)
tree0e6b02e3e7324eae9a71fbf02524cedf57c46f4e /engines/parallaction/graphics.cpp
parentc77124ff50dee8864a94a31b4a0f2a588daed445 (diff)
downloadscummvm-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/graphics.cpp')
-rw-r--r--engines/parallaction/graphics.cpp4
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);