diff options
author | Johannes Schickel | 2010-06-29 18:20:10 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-29 18:20:10 +0000 |
commit | bf2b059a63ff68d2688d48e24f5bdcf97de46335 (patch) | |
tree | 0bb50bcac41b4352907c17137afdc4544d78c36f /engines | |
parent | 8db0f726c0253300faf8b9691607715fdaa45920 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/tinsel/tinlib.cpp | 2 |
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. |