aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/control.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision/control.h')
-rw-r--r--engines/zvision/control.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/control.h b/engines/zvision/control.h
index 8d4ea9f65d..b16ca7f73d 100644
--- a/engines/zvision/control.h
+++ b/engines/zvision/control.h
@@ -40,11 +40,11 @@ public:
Control() : _engine(0), _key(0), _enabled(false) {}
Control(ZVision *engine, uint32 key) : _engine(engine), _key(key), _enabled(false) {}
virtual ~Control() {}
- virtual bool enable() = 0;
- virtual bool disable() = 0;
uint32 getKey() { return _key; }
+ virtual void enable();
+ virtual void disable();
/**
* Called when LeftMouse is pushed. Default is NOP.
*