diff options
author | Max Horn | 2013-04-18 20:14:10 +0200 |
---|---|---|
committer | Max Horn | 2013-04-18 23:50:20 +0200 |
commit | b791edabf7ccba930ad0cea09f9b8449a87d8bcb (patch) | |
tree | 711923358724677015a195a6edb657240c3cd18a /engines/parallaction | |
parent | cdfd5f85c888525c274f309a4b313f8aa2fa6636 (diff) | |
download | scummvm-rg350-b791edabf7ccba930ad0cea09f9b8449a87d8bcb.tar.gz scummvm-rg350-b791edabf7ccba930ad0cea09f9b8449a87d8bcb.tar.bz2 scummvm-rg350-b791edabf7ccba930ad0cea09f9b8449a87d8bcb.zip |
ENGINES: Remove a bunch of unused private member variables
All instances uncovered by clang warnings.
Diffstat (limited to 'engines/parallaction')
-rw-r--r-- | engines/parallaction/gfxbase.cpp | 2 | ||||
-rw-r--r-- | engines/parallaction/graphics.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/engines/parallaction/gfxbase.cpp b/engines/parallaction/gfxbase.cpp index a9889cc7af..e2d9532c8a 100644 --- a/engines/parallaction/gfxbase.cpp +++ b/engines/parallaction/gfxbase.cpp @@ -31,7 +31,7 @@ namespace Parallaction { GfxObj::GfxObj(uint objType, Frames *frames, const char* name) : - _frames(frames), _keep(true), x(0), y(0), z(0), _prog(0), _flags(0), + _frames(frames), x(0), y(0), z(0), _prog(0), _flags(0), type(objType), frame(0), layer(3), scale(100), _hasMask(false), _hasPath(false) { if (name) { diff --git a/engines/parallaction/graphics.h b/engines/parallaction/graphics.h index e9daabb194..55c1c0c04e 100644 --- a/engines/parallaction/graphics.h +++ b/engines/parallaction/graphics.h @@ -289,8 +289,6 @@ class GfxObj { char *_name; Frames *_frames; - bool _keep; - public: int16 x, y; |