aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/init.cpp b/init.cpp
index 1f51baf3fe..050b3b5903 100644
--- a/init.cpp
+++ b/init.cpp
@@ -27,9 +27,11 @@
Scumm::Scumm (void) {
_newgui = new NewGui(this);
+ _bundle = new Bundle(this);
}
Scumm::~Scumm (void) {
delete [] _actors;
delete _newgui;
-} \ No newline at end of file
+ delete _bundle;
+}