From 3248906156d6fa2bb01c4bfa527aaba379456705 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 2 Oct 2008 17:48:01 +0000 Subject: 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 --- engines/saga/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/saga') diff --git a/engines/saga/gfx.cpp b/engines/saga/gfx.cpp index 85416991db..2cc4e8c095 100644 --- a/engines/saga/gfx.cpp +++ b/engines/saga/gfx.cpp @@ -41,7 +41,7 @@ namespace Saga { Gfx::Gfx(SagaEngine *vm, OSystem *system, int width, int height) : _vm(vm), _system(system) { _system->beginGFXTransaction(); - _vm->initCommonGFX(width > 320); + initCommonGFX(width > 320); _system->initSize(width, height); _system->endGFXTransaction(); -- cgit v1.2.3