aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/script_fw.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-02-15 20:19:06 +0000
committerJohannes Schickel2009-02-15 20:19:06 +0000
commitda3516248cb1f71b8afe94ac769c87617a378842 (patch)
tree411d4129249f6ec0ae14620e64802a54826d0204 /engines/cine/script_fw.cpp
parent78282ea586a4cfbf16b57782c4905d751911e210 (diff)
downloadscummvm-rg350-da3516248cb1f71b8afe94ac769c87617a378842.tar.gz
scummvm-rg350-da3516248cb1f71b8afe94ac769c87617a378842.tar.bz2
scummvm-rg350-da3516248cb1f71b8afe94ac769c87617a378842.zip
Fixed compilation (along with it const correctness).
svn-id: r38287
Diffstat (limited to 'engines/cine/script_fw.cpp')
-rw-r--r--engines/cine/script_fw.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/script_fw.cpp b/engines/cine/script_fw.cpp
index b4c4d72701..f7037db61c 100644
--- a/engines/cine/script_fw.cpp
+++ b/engines/cine/script_fw.cpp
@@ -49,7 +49,7 @@ ScriptVars globalVars(NUM_MAX_VAR + 1);
uint16 compareVars(int16 a, int16 b);
-Opcode *FWScript::_opcodeTable = 0;
+const Opcode *FWScript::_opcodeTable = 0;
unsigned int FWScript::_numOpcodes = 0;
void FWScript::setupTable() {
@@ -211,7 +211,7 @@ void FWScript::setupTable() {
{ &FWScript::o1_unloadMask5, "b" }
};
- FWScript::_opcodeTable = (Opcode *)opcodeTable;
+ FWScript::_opcodeTable = (const Opcode *)opcodeTable;
FWScript::_numOpcodes = ARRAYSIZE(opcodeTable);
}