diff options
author | Paweł Kołodziejski | 2007-04-15 22:14:06 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2007-04-15 22:14:06 +0000 |
commit | 46462e8f5e833156d896a3c48e34dca94892b0f3 (patch) | |
tree | a11b43b4f7d0bc4eced0514bcf72f343efa685d6 | |
parent | b048a557ab4a4e8e8e4f96a8de02845bf2d468af (diff) | |
download | scummvm-rg350-46462e8f5e833156d896a3c48e34dca94892b0f3.tar.gz scummvm-rg350-46462e8f5e833156d896a3c48e34dca94892b0f3.tar.bz2 scummvm-rg350-46462e8f5e833156d896a3c48e34dca94892b0f3.zip |
fixed warning
svn-id: r26520
-rw-r--r-- | engines/scumm/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp index 5c3261a3e5..2033532d84 100644 --- a/engines/scumm/actor.cpp +++ b/engines/scumm/actor.cpp @@ -1850,7 +1850,7 @@ void ScummEngine::resetV1ActorTalkColor() { #ifndef DISABLE_SCUMM_7_8 void ScummEngine_v7::actorTalk(const byte *msg) { Actor *a; - bool stringWrap; + bool stringWrap = false; convertMessageToString(msg, _charsetBuffer, sizeof(_charsetBuffer)); |