aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision/control.cpp')
-rw-r--r--engines/zvision/control.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/zvision/control.cpp b/engines/zvision/control.cpp
index bcbdabc143..0346228681 100644
--- a/engines/zvision/control.cpp
+++ b/engines/zvision/control.cpp
@@ -33,24 +33,6 @@
namespace ZVision {
-void Control::enable() {
- if (!_enabled) {
- _enabled = true;
- return;
- }
-
- debug("Control %u is already enabled", _key);
-}
-
-void Control::disable() {
- if (_enabled) {
- _enabled = false;
- return;
- }
-
- debug("Control %u is already disabled", _key);
-}
-
void Control::parseFlatControl(ZVision *engine) {
engine->getRenderManager()->getRenderTable()->setRenderState(RenderTable::FLAT);
}