diff options
author | Filippos Karapetis | 2009-01-27 17:08:09 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-01-27 17:08:09 +0000 |
commit | a359f7c1da3e0b6dd08a7e7cb779c417ca5fd8f2 (patch) | |
tree | 2fafeba687262da4dab4ccca8aac0527d15dedf0 /engines | |
parent | b6c17e396ba2dc1994c8f75105be5598cacafb59 (diff) | |
download | scummvm-rg350-a359f7c1da3e0b6dd08a7e7cb779c417ca5fd8f2.tar.gz scummvm-rg350-a359f7c1da3e0b6dd08a7e7cb779c417ca5fd8f2.tar.bz2 scummvm-rg350-a359f7c1da3e0b6dd08a7e7cb779c417ca5fd8f2.zip |
Silence MSVC warnings
svn-id: r36100
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/string.cpp b/engines/agos/string.cpp index 0ff004e1fe..f4762d36ff 100644 --- a/engines/agos/string.cpp +++ b/engines/agos/string.cpp @@ -48,8 +48,8 @@ void AGOSEngine::uncompressText(byte *ptr) { } byte *AGOSEngine::uncompressToken(byte a, byte *ptr) { - byte *ptr1; - byte *ptr2; + byte *ptr1 = 0; + byte *ptr2 = 0; byte b; int count1 = 0; |