aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/script.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cine/script.h')
-rw-r--r--engines/cine/script.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cine/script.h b/engines/cine/script.h
index 2d546b39a0..5b930e3f64 100644
--- a/engines/cine/script.h
+++ b/engines/cine/script.h
@@ -44,10 +44,10 @@ namespace Cine {
class FWScript;
-typedef int (FWScript::*opFunc)();
+typedef int (FWScript::*OpFunc)();
struct Opcode {
- const opFunc proc;
+ const OpFunc proc;
const char *args;
};
@@ -320,7 +320,7 @@ public:
*/
class FWScriptInfo {
protected:
- virtual opFunc opcodeHandler(byte opcode) const;
+ virtual OpFunc opcodeHandler(byte opcode) const;
public:
virtual ~FWScriptInfo() {}
@@ -338,7 +338,7 @@ public:
*/
class OSScriptInfo : public FWScriptInfo {
protected:
- virtual opFunc opcodeHandler(byte opcode) const;
+ virtual OpFunc opcodeHandler(byte opcode) const;
public:
virtual ~OSScriptInfo() {}