aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-05-29 12:52:03 +0000
committerJohannes Schickel2009-05-29 12:52:03 +0000
commit64e6c596c7d485a2e68138b08e573813c4783b59 (patch)
treec42534336c094a2871e82ce013912b060aa78170 /engines/kyra/script.h
parent702f267b192eb469a231b2c4207196527b392aca (diff)
downloadscummvm-rg350-64e6c596c7d485a2e68138b08e573813c4783b59.tar.gz
scummvm-rg350-64e6c596c7d485a2e68138b08e573813c4783b59.tar.bz2
scummvm-rg350-64e6c596c7d485a2e68138b08e573813c4783b59.zip
Formatting.
svn-id: r40991
Diffstat (limited to 'engines/kyra/script.h')
-rw-r--r--engines/kyra/script.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/engines/kyra/script.h b/engines/kyra/script.h
index 65b3f477f3..88bbe86c4d 100644
--- a/engines/kyra/script.h
+++ b/engines/kyra/script.h
@@ -63,7 +63,7 @@ struct EMCState {
};
#define stackPos(x) (script->stack[script->sp+x])
-#define stackPosString(x) ((const char*)&script->dataPtr->text[READ_BE_UINT16(&script->dataPtr->text[stackPos(x)<<1])])
+#define stackPosString(x) ((const char *)&script->dataPtr->text[READ_BE_UINT16(&script->dataPtr->text[stackPos(x)<<1])])
class Resource;
class KyraEngine_v1;
@@ -116,24 +116,24 @@ protected:
const OpcodeEntry *_opcodes;
private:
- void op_jmp(EMCState*);
- void op_setRetValue(EMCState*);
- void op_pushRetOrPos(EMCState*);
- void op_push(EMCState*);
- void op_pushReg(EMCState*);
- void op_pushBPNeg(EMCState*);
- void op_pushBPAdd(EMCState*);
- void op_popRetOrPos(EMCState*);
- void op_popReg(EMCState*);
- void op_popBPNeg(EMCState*);
- void op_popBPAdd(EMCState*);
- void op_addSP(EMCState*);
- void op_subSP(EMCState*);
- void op_sysCall(EMCState*);
- void op_ifNotJmp(EMCState*);
- void op_negate(EMCState*);
- void op_eval(EMCState*);
- void op_setRetAndJmp(EMCState*);
+ void op_jmp(EMCState *);
+ void op_setRetValue(EMCState *);
+ void op_pushRetOrPos(EMCState *);
+ void op_push(EMCState *);
+ void op_pushReg(EMCState *);
+ void op_pushBPNeg(EMCState *);
+ void op_pushBPAdd(EMCState *);
+ void op_popRetOrPos(EMCState *);
+ void op_popReg(EMCState *);
+ void op_popBPNeg(EMCState *);
+ void op_popBPAdd(EMCState *);
+ void op_addSP(EMCState *);
+ void op_subSP(EMCState *);
+ void op_sysCall(EMCState *);
+ void op_ifNotJmp(EMCState *);
+ void op_negate(EMCState *);
+ void op_eval(EMCState *);
+ void op_setRetAndJmp(EMCState *);
};
} // end of namespace Kyra