diff options
| author | Eugene Sandulenko | 2017-03-06 07:05:06 +0100 |
|---|---|---|
| committer | Eugene Sandulenko | 2017-03-06 07:05:42 +0100 |
| commit | 7f2ddf8a13c344195b5d33a4b2e785ffca5b615f (patch) | |
| tree | 3baba8ab3fa7d9ad572aa2f2b1ef47529c4ba38d | |
| parent | d00cac18241a56349ec56dd4049327637002e44b (diff) | |
| download | scummvm-rg350-7f2ddf8a13c344195b5d33a4b2e785ffca5b615f.tar.gz scummvm-rg350-7f2ddf8a13c344195b5d33a4b2e785ffca5b615f.tar.bz2 scummvm-rg350-7f2ddf8a13c344195b5d33a4b2e785ffca5b615f.zip | |
DIRECTOR: Fix class initialization
| -rw-r--r-- | engines/director/score.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 0f2f9ecb96..6f7be1a62a 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -66,6 +66,7 @@ Score::Score(DirectorEngine *vm, Archive *archive) { _movieArchive = archive; _lingo = _vm->getLingo(); _soundManager = _vm->getSoundManager(); + _currentMouseDownSpriteId = 0; // FIXME: TODO: Check whether the original truely does it if (_vm->getVersion() <= 3) { |
