aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2008-12-05 22:01:22 +0000
committerFilippos Karapetis2008-12-05 22:01:22 +0000
commita4923c5ba44dc6069dcd469c4a0bcb51b7911597 (patch)
tree0767982163a7f049f13ae7970c2d7f14b4081b72
parent72ba213b360c3c19f2a4916a67d8e9c46e02990a (diff)
downloadscummvm-rg350-a4923c5ba44dc6069dcd469c4a0bcb51b7911597.tar.gz
scummvm-rg350-a4923c5ba44dc6069dcd469c4a0bcb51b7911597.tar.bz2
scummvm-rg350-a4923c5ba44dc6069dcd469c4a0bcb51b7911597.zip
Removed unused variable
svn-id: r35251
-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;