aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel
diff options
context:
space:
mode:
authorJohannes Schickel2010-06-29 18:20:10 +0000
committerJohannes Schickel2010-06-29 18:20:10 +0000
commitbf2b059a63ff68d2688d48e24f5bdcf97de46335 (patch)
tree0bb50bcac41b4352907c17137afdc4544d78c36f /engines/tinsel
parent8db0f726c0253300faf8b9691607715fdaa45920 (diff)
downloadscummvm-rg350-bf2b059a63ff68d2688d48e24f5bdcf97de46335.tar.gz
scummvm-rg350-bf2b059a63ff68d2688d48e24f5bdcf97de46335.tar.bz2
scummvm-rg350-bf2b059a63ff68d2688d48e24f5bdcf97de46335.zip
Silence possible use of uninitialized variable warning in g++.
svn-id: r50501
Diffstat (limited to 'engines/tinsel')
-rw-r--r--engines/tinsel/tinlib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/tinlib.cpp b/engines/tinsel/tinlib.cpp
index 677392a35d..766d4ed54a 100644
--- a/engines/tinsel/tinlib.cpp
+++ b/engines/tinsel/tinlib.cpp
@@ -5557,7 +5557,7 @@ int CallLibraryRoutine(CORO_PARAM, int operand, int32 *pp, const INT_CONTEXT *pi
case WALKED: {
// Common to both DW1 & DW2
pp -= 3; // 4 parameters
- bool tmp;
+ bool tmp = false;
Walked(coroParam, pp[0], pp[1], pp[2], pp[3], pic->escOn, pic->myEscape, tmp);
if (!coroParam) {
// Only write the result to the stack if walked actually completed running.