mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 13:13:58 +00:00
MACVENTURE: Fix Compiler Warning for Uninitialized Variable Usage.
This commit is contained in:
parent
2e48529fa1
commit
aa2e84c376
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user