diff options
author | Jonathan Gray | 2003-06-14 13:49:47 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-06-14 13:49:47 +0000 |
commit | 12edf335f38d24995298d7d4df1cf26329b340bf (patch) | |
tree | d755c31cb45df16182f7cc53ece74f952267cba6 | |
parent | 9555bff0997c78bf4088d3f543da9c2de0f149a6 (diff) | |
download | scummvm-rg350-12edf335f38d24995298d7d4df1cf26329b340bf.tar.gz scummvm-rg350-12edf335f38d24995298d7d4df1cf26329b340bf.tar.bz2 scummvm-rg350-12edf335f38d24995298d7d4df1cf26329b340bf.zip |
init actor things to make valgrind happy
svn-id: r8475
-rw-r--r-- | scumm/actor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/actor.h b/scumm/actor.h index f9715ca87c..7c856c0bd0 100644 --- a/scumm/actor.h +++ b/scumm/actor.h @@ -130,6 +130,8 @@ public: animProgress = 0; memset(animVariable, 0, sizeof(animVariable)); memset(palette, 0, sizeof(palette)); + memset(sound, 0, sizeof(sound)); + memset(&cost, 0, sizeof(CostumeData)); walkScript = 0; |