aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/controls32.h
diff options
context:
space:
mode:
authorMax Horn2013-04-18 20:14:44 +0200
committerMax Horn2013-04-18 23:50:20 +0200
commit51bde6ced569b165b4cb5d0891b2e306e2c2d7f2 (patch)
tree9911efd7b7fcde7677a684200ca3588fdaca18fe /engines/sci/graphics/controls32.h
parentb791edabf7ccba930ad0cea09f9b8449a87d8bcb (diff)
downloadscummvm-rg350-51bde6ced569b165b4cb5d0891b2e306e2c2d7f2.tar.gz
scummvm-rg350-51bde6ced569b165b4cb5d0891b2e306e2c2d7f2.tar.bz2
scummvm-rg350-51bde6ced569b165b4cb5d0891b2e306e2c2d7f2.zip
SCI: Remove a bunch of unused private member variables
All instances uncovered by clang warnings.
Diffstat (limited to 'engines/sci/graphics/controls32.h')
-rw-r--r--engines/sci/graphics/controls32.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/graphics/controls32.h b/engines/sci/graphics/controls32.h
index 68dca59462..1b705988c2 100644
--- a/engines/sci/graphics/controls32.h
+++ b/engines/sci/graphics/controls32.h
@@ -34,7 +34,7 @@ class GfxText32;
*/
class GfxControls32 {
public:
- GfxControls32(SegManager *segMan, GfxCache *cache, GfxScreen *screen, GfxText32 *text);
+ GfxControls32(SegManager *segMan, GfxCache *cache, GfxText32 *text);
~GfxControls32();
void kernelTexteditChange(reg_t controlObject);
@@ -42,7 +42,6 @@ public:
private:
SegManager *_segMan;
GfxCache *_cache;
- GfxScreen *_screen;
GfxText32 *_text;
};