aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cge.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2011-07-15 20:43:29 +1000
committerPaul Gilbert2011-07-15 20:43:29 +1000
commit11fa6b941c520129c017c946474114afa71fe41f (patch)
treec489ef5bd495514a72c2b85ec01d6f7de0ff24b6 /engines/cge/cge.cpp
parentc3bed46ba06046c8ba76c12c42d016f63beb6331 (diff)
downloadscummvm-rg350-11fa6b941c520129c017c946474114afa71fe41f.tar.gz
scummvm-rg350-11fa6b941c520129c017c946474114afa71fe41f.tar.bz2
scummvm-rg350-11fa6b941c520129c017c946474114afa71fe41f.zip
CGE: Fix some errors in the pathfinder setup
Diffstat (limited to 'engines/cge/cge.cpp')
-rw-r--r--engines/cge/cge.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/cge/cge.cpp b/engines/cge/cge.cpp
index 0861e3e7f2..e192774f45 100644
--- a/engines/cge/cge.cpp
+++ b/engines/cge/cge.cpp
@@ -68,6 +68,7 @@ void CGEEngine::setup() {
VFile::init();
Bitmap::init();
Talk::init();
+ Cluster::init(this);
// Initialise engine objects
_text = new Text(this, progName(), 128);
@@ -132,6 +133,7 @@ CGEEngine::~CGEEngine() {
Bitmap::deinit();
VFile::deinit();
Vga::deinit();
+ Cluster::init(this);
// Remove all of our debug levels here
DebugMan.clearAllDebugChannels();