aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk
diff options
context:
space:
mode:
authorMatthew Hoops2010-08-23 17:01:33 +0000
committerMatthew Hoops2010-08-23 17:01:33 +0000
commit9f5f27b42e8c4e23ec7d8341b5b03c4f53b88f3f (patch)
treec9bc2a6bb7feddce92fc9a3316a83de276982412 /engines/mohawk
parent7b8add291ebae5360bc8a68a3cc6bc1edae9a998 (diff)
downloadscummvm-rg350-9f5f27b42e8c4e23ec7d8341b5b03c4f53b88f3f.tar.gz
scummvm-rg350-9f5f27b42e8c4e23ec7d8341b5b03c4f53b88f3f.tar.bz2
scummvm-rg350-9f5f27b42e8c4e23ec7d8341b5b03c4f53b88f3f.zip
MOHAWK: Fix xgwatch in the DVD version, which uses sounds in a different location
svn-id: r52302
Diffstat (limited to 'engines/mohawk')
-rw-r--r--engines/mohawk/riven_external.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/riven_external.cpp b/engines/mohawk/riven_external.cpp
index b51fb99418..5af95226a4 100644
--- a/engines/mohawk/riven_external.cpp
+++ b/engines/mohawk/riven_external.cpp
@@ -1461,7 +1461,7 @@ void RivenExternal::xgwatch(uint16 argc, uint16 *argv) {
if (curSound == 5) // Break out after the last sound is done
break;
- _vm->_sound->playSound(getComboDigit(*prisonCombo, curSound) + 13);
+ _vm->_sound->playSound(getComboDigit(*prisonCombo, curSound) + 13, !(_vm->getFeatures() & GF_DVD));
curSound++;
soundTime = _vm->_system->getMillis();
}