aboutsummaryrefslogtreecommitdiff
path: root/scumm/intern.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/intern.h')
-rw-r--r--scumm/intern.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 3b502e6fa2..fdccfba2f9 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -326,10 +326,6 @@ protected:
const OpcodeEntryV6 *_opcodesV6;
- // HE v7.0+ games
- Win32ResExtractor *_Win32ResExtractor;
-
-
int _smushFrameRate;
public:
@@ -606,10 +602,12 @@ protected:
const char *desc;
};
+ Win32ResExtractor *_Win32ResExtractor;
+
const OpcodeEntryV7he *_opcodesV7he;
public:
- ScummEngine_v7he(GameDetector *detector, OSystem *syst, const ScummGameSettings &gs) : ScummEngine_v6he(detector, syst, gs) {}
+ ScummEngine_v7he(GameDetector *detector, OSystem *syst, const ScummGameSettings &gs);
protected:
virtual void setupScummVars();
@@ -633,6 +631,8 @@ protected:
void o7_getActorRoom();
void o7_pickupObject();
void o7_startSound();
+ void o7_actorOps();
+ void o7_cursorCommand();
};
class ScummEngine_v7 : public ScummEngine_v6 {