aboutsummaryrefslogtreecommitdiff
path: root/sword2/interpreter.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-07-28 07:22:40 +0000
committerJonathan Gray2003-07-28 07:22:40 +0000
commita05c4bda0f9217723ea2541b4fd279418a8efc1a (patch)
tree93ed95a0152a27a7c17234ca2f54c3611e60b6fe /sword2/interpreter.cpp
parent77cf6b7c3e66cca495e9ddbc92dad68a1874ee17 (diff)
downloadscummvm-rg350-a05c4bda0f9217723ea2541b4fd279418a8efc1a.tar.gz
scummvm-rg350-a05c4bda0f9217723ea2541b4fd279418a8efc1a.tar.bz2
scummvm-rg350-a05c4bda0f9217723ea2541b4fd279418a8efc1a.zip
-Werror cleanup
svn-id: r9230
Diffstat (limited to 'sword2/interpreter.cpp')
-rw-r--r--sword2/interpreter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/interpreter.cpp b/sword2/interpreter.cpp
index d1a0d3e247..f7a5d51868 100644
--- a/sword2/interpreter.cpp
+++ b/sword2/interpreter.cpp
@@ -323,7 +323,7 @@ int RunScript ( const char * scriptData , char * objectData , uint32 *offset )
int32 stack2[STACK_SIZE]; // The current stack
int32 stackPointer2 = 0; // Position within stack
int parameterReturnedFromMcodeFunction=0; // Allow scripts to return things
- int savedStartOfMcode; // For saving start of mcode commands
+ int savedStartOfMcode=0; // For saving start of mcode commands
// Get the start of variables and start of code
DEBUG3("Enter interpreter data %x, object %x, offset %d",scriptData,objectData,*offset);