aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/init.cpp b/init.cpp
index f9672de919..ef46026ed2 100644
--- a/init.cpp
+++ b/init.cpp
@@ -22,7 +22,13 @@
#include"stdafx.h"
#include"scumm.h"
+#include "actor.h"
Scumm::Scumm (void) {
/* No need to put anything here yet :) */
+ actor = new Actor[MAX_ACTORS](this);
}
+
+Scumm::~Scumm (void) {
+ delete [] actor;
+} \ No newline at end of file