aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/carry
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-03 10:34:38 -0400
committerPaul Gilbert2016-09-03 10:34:38 -0400
commitc224d35a432fff7e1d0a6bf5368f7f2e81a45e27 (patch)
treec568bc54a2eaf5c0cbc69f76e1e771659690fd7c /engines/titanic/carry
parent38cf75e885983b88d03272f35e39f5d874eae575 (diff)
downloadscummvm-rg350-c224d35a432fff7e1d0a6bf5368f7f2e81a45e27.tar.gz
scummvm-rg350-c224d35a432fff7e1d0a6bf5368f7f2e81a45e27.tar.bz2
scummvm-rg350-c224d35a432fff7e1d0a6bf5368f7f2e81a45e27.zip
TITANIC: Identified sound balance usage in the engine
Diffstat (limited to 'engines/titanic/carry')
-rw-r--r--engines/titanic/carry/arm.cpp2
-rw-r--r--engines/titanic/carry/brain.cpp2
-rw-r--r--engines/titanic/carry/bridge_piece.cpp2
-rw-r--r--engines/titanic/carry/carry_parrot.cpp8
4 files changed, 7 insertions, 7 deletions
diff --git a/engines/titanic/carry/arm.cpp b/engines/titanic/carry/arm.cpp
index a67937ebdf..cbc14da477 100644
--- a/engines/titanic/carry/arm.cpp
+++ b/engines/titanic/carry/arm.cpp
@@ -161,7 +161,7 @@ bool CArm::MaitreDHappyMsg(CMaitreDHappyMsg *msg) {
CGameObject *petItem;
if (find(getName(), &petItem, FIND_PET)) {
if (!_field158)
- playSound("z#47.wav", 100, 0, 0);
+ playSound("z#47.wav");
if (_string6 == "Key" || _string6 == "AuditoryCentre") {
CGameObject *child = dynamic_cast<CGameObject *>(getFirstChild());
if (child) {
diff --git a/engines/titanic/carry/brain.cpp b/engines/titanic/carry/brain.cpp
index 102d8d9049..64b068697b 100644
--- a/engines/titanic/carry/brain.cpp
+++ b/engines/titanic/carry/brain.cpp
@@ -68,7 +68,7 @@ bool CBrain::UseWithOtherMsg(CUseWithOtherMsg *msg) {
petMoveToHiddenRoom();
CAddHeadPieceMsg headpieceMsg(getName());
headpieceMsg.execute(msg->_other);
- playSound("z#116.wav", 100, 0, 0);
+ playSound("z#116.wav");
setPosition(Point(0, 0));
setVisible(false);
_field134 = 1;
diff --git a/engines/titanic/carry/bridge_piece.cpp b/engines/titanic/carry/bridge_piece.cpp
index a2cb23add6..487ea32df6 100644
--- a/engines/titanic/carry/bridge_piece.cpp
+++ b/engines/titanic/carry/bridge_piece.cpp
@@ -60,7 +60,7 @@ bool CBridgePiece::UseWithOtherMsg(CUseWithOtherMsg *msg) {
return true;
} else {
setVisible(false);
- playSound("z#54.wav", 100, 0, 0);
+ playSound("z#54.wav");
setPosition(shipSetting->_pos1);
shipSetting->_itemName = getName();
petMoveToHiddenRoom();
diff --git a/engines/titanic/carry/carry_parrot.cpp b/engines/titanic/carry/carry_parrot.cpp
index 5e9a738e93..57d82af78a 100644
--- a/engines/titanic/carry/carry_parrot.cpp
+++ b/engines/titanic/carry/carry_parrot.cpp
@@ -124,7 +124,7 @@ bool CCarryParrot::MouseDragEndMsg(CMouseDragEndMsg *msg) {
setVisible(false);
_fieldE0 = 0;
CParrot::_v4 = 2;
- playSound("z#475.wav", 100, 0, 0);
+ playSound("z#475.wav");
sound8(true);
moveUnder(findRoom());
@@ -139,7 +139,7 @@ bool CCarryParrot::MouseDragEndMsg(CMouseDragEndMsg *msg) {
} else {
setVisible(false);
_fieldE0 = 0;
- playSound("z#475.wav", 100, 0, 0);
+ playSound("z#475.wav");
sound8(true);
moveUnder(findRoom());
}
@@ -171,7 +171,7 @@ bool CCarryParrot::PassOnDragStartMsg(CPassOnDragStartMsg *msg) {
startTalking(npc, 0x446BF);
_fieldE0 = 0;
- playSound("z#475.wav", 100, 0, 0);
+ playSound("z#475.wav");
moveUnder(findRoom());
msg->_value4 = 1;
@@ -208,7 +208,7 @@ bool CCarryParrot::ActMsg(CActMsg *msg) {
CActMsg actMsg("Shut");
actMsg.execute("ParrotCage");
} else {
- playSound("z#475.wav", 100, 0, 0);
+ playSound("z#475.wav");
if (!_feathersFlag) {
CCarry *feathers = dynamic_cast<CCarry *>(getRoot()->findByName("Feathers"));