aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script_eob.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/script_eob.h')
-rw-r--r--engines/kyra/script_eob.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/kyra/script_eob.h b/engines/kyra/script_eob.h
index 3804db07c6..66323d6846 100644
--- a/engines/kyra/script_eob.h
+++ b/engines/kyra/script_eob.h
@@ -91,8 +91,10 @@ private:
Screen_EoB *_screen;
typedef Common::Functor1Mem<int8*, int, EoBInfProcessor> InfProc;
- struct InfOpcode {
+ struct InfOpcode : private Common::NonCopyable {
InfOpcode(InfProc *p, const char *d) : proc(p), desc(d) {}
+ ~InfOpcode() { delete proc; }
+
InfProc *proc;
Common::String desc;
};