aboutsummaryrefslogtreecommitdiff
path: root/common/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/engine.cpp')
-rw-r--r--common/engine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/engine.cpp b/common/engine.cpp
index a31db7d641..7aa9100f81 100644
--- a/common/engine.cpp
+++ b/common/engine.cpp
@@ -40,11 +40,13 @@ Engine::Engine(GameDetector *detector, OSystem *syst)
/* FIXME - BIG HACK for MidiEmu */
g_system = _system;
g_mixer = _mixer;
+ _timer = new Timer(this);
}
Engine::~Engine()
{
delete _mixer;
+ delete _timer;
}
const char *Engine::getSavePath() const