aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/controls32.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/controls32.h')
-rw-r--r--engines/sci/graphics/controls32.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/sci/graphics/controls32.h b/engines/sci/graphics/controls32.h
index 9a153e7ad5..68dca59462 100644
--- a/engines/sci/graphics/controls32.h
+++ b/engines/sci/graphics/controls32.h
@@ -27,12 +27,14 @@ namespace Sci {
class GfxCache;
class GfxScreen;
+class GfxText32;
+
/**
* Controls class, handles drawing of controls in SCI32 (SCI2, SCI2.1, SCI3) games
*/
class GfxControls32 {
public:
- GfxControls32(SegManager *segMan, GfxCache *cache, GfxScreen *screen);
+ GfxControls32(SegManager *segMan, GfxCache *cache, GfxScreen *screen, GfxText32 *text);
~GfxControls32();
void kernelTexteditChange(reg_t controlObject);
@@ -41,6 +43,7 @@ private:
SegManager *_segMan;
GfxCache *_cache;
GfxScreen *_screen;
+ GfxText32 *_text;
};
} // End of namespace Sci