aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2017-02-19 23:04:51 -0500
committerPaul Gilbert2017-02-19 23:04:51 -0500
commit930f68810004e9ab453baa3724565d3c745c816e (patch)
treec16bbe2fab82c11e9602f84b770450fd52acced5 /engines
parent2d80b931b3f004265fd08c3182f94a4c5824e063 (diff)
downloadscummvm-rg350-930f68810004e9ab453baa3724565d3c745c816e.tar.gz
scummvm-rg350-930f68810004e9ab453baa3724565d3c745c816e.tar.bz2
scummvm-rg350-930f68810004e9ab453baa3724565d3c745c816e.zip
TITANIC: Fix using ears on Titania
Diffstat (limited to 'engines')
-rw-r--r--engines/titanic/carry/ear.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/titanic/carry/ear.cpp b/engines/titanic/carry/ear.cpp
index 580ebd662f..c5196dc557 100644
--- a/engines/titanic/carry/ear.cpp
+++ b/engines/titanic/carry/ear.cpp
@@ -59,9 +59,11 @@ bool CEar::UseWithOtherMsg(CUseWithOtherMsg *msg) {
CAddHeadPieceMsg addMsg(getName());
if (addMsg._value != "NULL")
addMsg.execute(addMsg._value == "Ear1" ? "Ear1Slot" : "Ear2Slot");
- }
- return CCarry::UseWithOtherMsg(msg);
+ return true;
+ } else {
+ return CCarry::UseWithOtherMsg(msg);
+ }
}
} // End of namespace Titanic