diff options
author | Matthew Hoops | 2010-02-16 00:12:00 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-02-16 00:12:00 +0000 |
commit | 55a9787234d9968dc4d377efc1a82543585124f7 (patch) | |
tree | 576e3791b20b7a4b1526158ab2cf578943d1bd9a /engines/mohawk/video | |
parent | 9426e86ede8a191227fb4f18b2881a20cd3b0232 (diff) | |
download | scummvm-rg350-55a9787234d9968dc4d377efc1a82543585124f7.tar.gz scummvm-rg350-55a9787234d9968dc4d377efc1a82543585124f7.tar.bz2 scummvm-rg350-55a9787234d9968dc4d377efc1a82543585124f7.zip |
Correct a rogue typo.
svn-id: r48068
Diffstat (limited to 'engines/mohawk/video')
-rw-r--r-- | engines/mohawk/video/video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/video/video.cpp b/engines/mohawk/video/video.cpp index 0e4de00417..f56611807a 100644 --- a/engines/mohawk/video/video.cpp +++ b/engines/mohawk/video/video.cpp @@ -158,7 +158,7 @@ bool VideoManager::updateBackgroundMovies() { _videoStreams[i]->reset(); } else { delete _videoStreams[i].video; - memset(&_videoStreams, 0, sizeof(VideoEntry)); + memset(&_videoStreams[i], 0, sizeof(VideoEntry)); _videoStreams[i].video = NULL; continue; } |