diff options
author | Filippos Karapetis | 2007-07-31 18:26:14 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-07-31 18:26:14 +0000 |
commit | 806995ddd020548cc9cf9d144c430664008841ab (patch) | |
tree | 1218de29625bbedb41bb83557908f6378602d8a7 /engines | |
parent | 2e9ca7bf85cdaf71f009c689a0aae6cd14e8f710 (diff) | |
download | scummvm-rg350-806995ddd020548cc9cf9d144c430664008841ab.tar.gz scummvm-rg350-806995ddd020548cc9cf9d144c430664008841ab.tar.bz2 scummvm-rg350-806995ddd020548cc9cf9d144c430664008841ab.zip |
Fixed some warnings
svn-id: r28364
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/coktelvideo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/coktelvideo.cpp b/engines/gob/coktelvideo.cpp index 0d59bf4993..bb50ddf04a 100644 --- a/engines/gob/coktelvideo.cpp +++ b/engines/gob/coktelvideo.cpp @@ -1060,7 +1060,7 @@ void Vmd::clear(bool del) { CoktelVideo::State Vmd::processFrame(uint16 frame) { State state; - int16 xBak, yBak, heightBak, widthBak; + int16 xBak = 0, yBak = 0, heightBak = 0, widthBak = 0; bool startSound = false; seekFrame(frame); |