aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Bouclet2016-02-20 13:57:40 +0100
committerBastien Bouclet2016-02-20 14:00:59 +0100
commit9c99f74bdab36499eb399b7e0b7b383116decba9 (patch)
tree7444f0a83f450a702ab6ef79198f8f3abc7297da
parent23c251bac9b3d3533fc43adbe46003b3d6a2fe53 (diff)
downloadscummvm-rg350-9c99f74bdab36499eb399b7e0b7b383116decba9.tar.gz
scummvm-rg350-9c99f74bdab36499eb399b7e0b7b383116decba9.tar.bz2
scummvm-rg350-9c99f74bdab36499eb399b7e0b7b383116decba9.zip
MOHAWK: Remove an unneeded TODO
The original did not set the argument to wait until the foreground sound has finished before playing the background sound, so it's fine to play both at the same time.
-rw-r--r--engines/mohawk/myst_stacks/myst.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/myst_stacks/myst.cpp b/engines/mohawk/myst_stacks/myst.cpp
index 0576bdd2a3..5033f0fef8 100644
--- a/engines/mohawk/myst_stacks/myst.cpp
+++ b/engines/mohawk/myst_stacks/myst.cpp
@@ -1380,7 +1380,7 @@ void Myst::o_generatorButtonPressed(uint16 op, uint16 var, uint16 argc, uint16 *
if (_generatorVoltage)
_vm->_sound->replaceSoundMyst(6297);
else {
- _vm->_sound->replaceSoundMyst(7297); // TODO: Replace with play sound and replace background 4297
+ _vm->_sound->replaceSoundMyst(7297);
_vm->_sound->replaceBackgroundMyst(4297);
}