diff options
author | Bastien Bouclet | 2016-03-28 09:31:55 +0200 |
---|---|---|
committer | Bastien Bouclet | 2016-03-28 09:33:46 +0200 |
commit | 77c2630049d4854fffeeb7686d27adeabd253da3 (patch) | |
tree | 1814040b282d8a0cb00f5b2b42bc4dbca13def77 /engines/mohawk/myst_stacks | |
parent | 363f12698480c3f872c78311b7ce166c9973966e (diff) | |
download | scummvm-rg350-77c2630049d4854fffeeb7686d27adeabd253da3.tar.gz scummvm-rg350-77c2630049d4854fffeeb7686d27adeabd253da3.tar.bz2 scummvm-rg350-77c2630049d4854fffeeb7686d27adeabd253da3.zip |
MOHAWK: Play the gears sound when resetting the Myst clock puzzle
Fixes #7093.
Diffstat (limited to 'engines/mohawk/myst_stacks')
-rw-r--r-- | engines/mohawk/myst_stacks/myst.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mohawk/myst_stacks/myst.cpp b/engines/mohawk/myst_stacks/myst.cpp index 9d23d2fb10..4dc392a7e9 100644 --- a/engines/mohawk/myst_stacks/myst.cpp +++ b/engines/mohawk/myst_stacks/myst.cpp @@ -3089,6 +3089,8 @@ void Myst::clockReset() { } void Myst::clockResetWeight() { + _vm->_sound->replaceSoundMyst(9113); + _clockWeightVideo = _vm->_video->playMovie(_vm->wrapMovieFilename("cl1wlfch", kMystStack)); if (!_clockWeightVideo) error("Failed to open cl1wlfch movie"); |