diff options
author | Eugene Sandulenko | 2006-11-22 15:50:30 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-11-22 15:50:30 +0000 |
commit | cfb29dcb5199922e40e08b7cdc6502478782006c (patch) | |
tree | 6781796da6f3dbe145425b59cf90354c250982d6 /engines/cine | |
parent | 1076ae02ea84fa4795871e10e366ec6fbeed4d83 (diff) | |
download | scummvm-rg350-cfb29dcb5199922e40e08b7cdc6502478782006c.tar.gz scummvm-rg350-cfb29dcb5199922e40e08b7cdc6502478782006c.tar.bz2 scummvm-rg350-cfb29dcb5199922e40e08b7cdc6502478782006c.zip |
Fix MSVC2005 warnings. Please, review the changes.
svn-id: r24760
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/part.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/part.cpp b/engines/cine/part.cpp index cc43b9c70d..7eb05ff22d 100644 --- a/engines/cine/part.cpp +++ b/engines/cine/part.cpp @@ -336,7 +336,7 @@ int16 findFileInBundle(const char *fileName) { } } - const char **bPtr; + const char **bPtr = 0; if (g_cine->getPlatform() == Common::kPlatformPC) { switch (g_cine->getLanguage()) { |