diff options
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/text.cpp b/engines/macventure/text.cpp index d8e18fffdf..60d7ea1316 100644 --- a/engines/macventure/text.cpp +++ b/engines/macventure/text.cpp @@ -53,7 +53,7 @@ void TextAsset::decodeOld() { Common::BitStream32BELSB stream(res, DisposeAfterUse::YES); char *str = new char[strLen + 1]; bool lowercase = false; - char c; + char c = ' '; for (uint16 i = 0; i < strLen; i++) { char val = stream.getBits(5); if (val == 0x0) { // Space |