aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/saga/gfx.cpp3
-rw-r--r--engines/saga/gfx.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/engines/saga/gfx.cpp b/engines/saga/gfx.cpp
index b1e1e306ca..285a33b656 100644
--- a/engines/saga/gfx.cpp
+++ b/engines/saga/gfx.cpp
@@ -46,9 +46,6 @@ Gfx::Gfx(SagaEngine *vm, OSystem *system, int width, int height) : _vm(vm), _sys
// Convert surface data to R surface data
_backBuffer.create(width, height, 1);
- // Set module data
- _init = 1;
-
// Start with the cursor shown. It will be hidden before the intro, if
// there is an intro. (With boot params, there may not be.)
setCursor(kCursorNormal);
diff --git a/engines/saga/gfx.h b/engines/saga/gfx.h
index 21e35b69bb..b0819c60af 100644
--- a/engines/saga/gfx.h
+++ b/engines/saga/gfx.h
@@ -157,7 +157,6 @@ public:
void setCursor(CursorType cursorType = kCursorNormal);
private:
- int _init;
Surface _backBuffer;
byte _currentPal[PAL_ENTRIES * 4];
OSystem *_system;