aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/inter.h')
-rw-r--r--engines/gob/inter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index 414975b8be..2129a57b4b 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -65,8 +65,8 @@ public:
protected:
struct OpFuncParams {
- char cmdCount;
- int16 counter;
+ byte cmdCount;
+ byte counter;
int16 retFlag;
};
struct OpGobParams {
@@ -98,7 +98,7 @@ protected:
virtual const char *getOpcodeFuncDesc(byte i, byte j) = 0;
virtual const char *getOpcodeGoblinDesc(int i) = 0;
- virtual void checkSwitchTable(char **ppExec) = 0;
+ virtual void checkSwitchTable(byte **ppExec) = 0;
void o_drawNOP() {}
bool o_funcNOP(OpFuncParams &params) { return false; }
@@ -142,7 +142,7 @@ protected:
virtual const char *getOpcodeFuncDesc(byte i, byte j);
virtual const char *getOpcodeGoblinDesc(int i);
- virtual void checkSwitchTable(char **ppExec);
+ virtual void checkSwitchTable(byte **ppExec);
void o1_loadMult();
void o1_playMult();
@@ -337,7 +337,7 @@ protected:
virtual const char *getOpcodeFuncDesc(byte i, byte j);
virtual const char *getOpcodeGoblinDesc(int i);
- virtual void checkSwitchTable(char **ppExec);
+ virtual void checkSwitchTable(byte **ppExec);
void o2_playMult();
void o2_setRenderFlags();