aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/cryo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cryo/cryo.cpp')
-rw-r--r--engines/cryo/cryo.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/cryo/cryo.cpp b/engines/cryo/cryo.cpp
index 220ba13524..1f15b0e5b3 100644
--- a/engines/cryo/cryo.cpp
+++ b/engines/cryo/cryo.cpp
@@ -60,6 +60,7 @@ CryoEngine::CryoEngine(OSystem *syst, const ADGameDescription *gameDesc) : Engin
// Don't forget to register your random source
_rnd = new Common::RandomSource("cryo");
_game = nullptr;
+ _video = nullptr;
debug("CryoEngine::CryoEngine");
@@ -72,6 +73,7 @@ CryoEngine::~CryoEngine() {
// Dispose your resources here
delete _rnd;
delete _game;
+ delete _video;
// Remove all of our debug levels here
DebugMan.clearAllDebugChannels();
@@ -79,6 +81,7 @@ CryoEngine::~CryoEngine() {
Common::Error CryoEngine::run() {
_game = new EdenGame(this);
+ _video = new HnmPlayer(this);
// Initialize graphics using following:
initGraphics(320, 200, false);