aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-06-01 20:28:20 +0000
committerPaweł Kołodziejski2004-06-01 20:28:20 +0000
commitcd0c2dfdeb928d2f71da9bb7e941aedc17caf40b (patch)
tree64be8062fe891d31e435ee928dc86fc978b8ad29 /scumm/smush
parent3f5c651551d134b45d78e60f9682611f8a7667d5 (diff)
downloadscummvm-rg350-cd0c2dfdeb928d2f71da9bb7e941aedc17caf40b.tar.gz
scummvm-rg350-cd0c2dfdeb928d2f71da9bb7e941aedc17caf40b.tar.bz2
scummvm-rg350-cd0c2dfdeb928d2f71da9bb7e941aedc17caf40b.zip
_allreadyInit was not initializedin smush player
svn-id: r13919
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/smush_player.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/smush/smush_player.cpp b/scumm/smush/smush_player.cpp
index da374aec85..08c2e5c84f 100644
--- a/scumm/smush/smush_player.cpp
+++ b/scumm/smush/smush_player.cpp
@@ -250,13 +250,12 @@ SmushPlayer::~SmushPlayer() {
void SmushPlayer::init() {
_frame = 0;
+ _alreadyInit = false;
_vm->_videoFinished = false;
_vm->setDirtyColors(0, 255);
_dst = _vm->virtscr[0].screenPtr + _vm->virtscr[0].xstart;
_smixer = new SmushMixer(_vm->_mixer);
g_timer->installTimerProc(&timerCallback, _speed, this);
-
- _alreadyInit = false;
}
void SmushPlayer::release() {