diff options
author | Paul Gilbert | 2014-05-26 12:33:24 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-05-26 12:33:24 -0400 |
commit | 6f8517a2770b6c20496cb70460a8ddfc9964b8f3 (patch) | |
tree | c6b1c6523f6dbca1c6211f44c37630367d965556 /engines/mads | |
parent | c7efc76af65434d171caa94f6eca550cc484289b (diff) | |
download | scummvm-rg350-6f8517a2770b6c20496cb70460a8ddfc9964b8f3.tar.gz scummvm-rg350-6f8517a2770b6c20496cb70460a8ddfc9964b8f3.tar.bz2 scummvm-rg350-6f8517a2770b6c20496cb70460a8ddfc9964b8f3.zip |
MADS: Fix compiler warning
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/resources.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/resources.cpp b/engines/mads/resources.cpp index 745583b516..0bb95debdf 100644 --- a/engines/mads/resources.cpp +++ b/engines/mads/resources.cpp @@ -394,7 +394,7 @@ void File::openFile(const Common::String &filename) { /*------------------------------------------------------------------------*/ void SynchronizedList::synchronize(Common::Serializer &s) { - int v; + int v = 0; int count = size(); s.syncAsUint16LE(count); |