aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
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/gob
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/gob')
-rw-r--r--engines/gob/video.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/video.cpp b/engines/gob/video.cpp
index 453613d1ae..30994cf4a7 100644
--- a/engines/gob/video.cpp
+++ b/engines/gob/video.cpp
@@ -171,7 +171,7 @@ void Video::clearScreen() {
void Video::setSize(bool defaultTo1XScaler) {
_vm->_system->beginGFXTransaction();
_vm->_system->initSize(_vm->_width, _vm->_height);
- _vm->initCommonGFX(defaultTo1XScaler);
+ initCommonGFX(defaultTo1XScaler);
_vm->_system->endGFXTransaction();
}