diff options
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/gfx.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/saga/gfx.cpp b/engines/saga/gfx.cpp index 2cc4e8c095..9585aac1b1 100644 --- a/engines/saga/gfx.cpp +++ b/engines/saga/gfx.cpp @@ -40,10 +40,7 @@ namespace Saga { #define RID_IHNM_HOURGLASS_CURSOR 11 // not in demo Gfx::Gfx(SagaEngine *vm, OSystem *system, int width, int height) : _vm(vm), _system(system) { - _system->beginGFXTransaction(); - initCommonGFX(width > 320); - _system->initSize(width, height); - _system->endGFXTransaction(); + initGraphics(width, height, width > 320); debug(5, "Init screen %dx%d", width, height); // Convert surface data to R surface data |