aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-08-19 23:18:29 +0200
committerEugene Sandulenko2016-08-19 23:18:29 +0200
commit5ec6f572c1b7888b4111566fcf6727ade3f043ea (patch)
treeb6c52ce576e0d21d6f6e1a68f919b0cc76d5ee23
parent164dffd0962dac97ec5fb5b1cb51238df6185633 (diff)
downloadscummvm-rg350-5ec6f572c1b7888b4111566fcf6727ade3f043ea.tar.gz
scummvm-rg350-5ec6f572c1b7888b4111566fcf6727ade3f043ea.tar.bz2
scummvm-rg350-5ec6f572c1b7888b4111566fcf6727ade3f043ea.zip
TITANIC: Fix infinite recursion
-rw-r--r--engines/titanic/carry/phonograph_ear.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/carry/phonograph_ear.cpp b/engines/titanic/carry/phonograph_ear.cpp
index 9cd461d7e0..95297a77a1 100644
--- a/engines/titanic/carry/phonograph_ear.cpp
+++ b/engines/titanic/carry/phonograph_ear.cpp
@@ -53,7 +53,7 @@ bool CPhonographEar::PETGainedObjectMsg(CPETGainedObjectMsg *msg) {
addTimer(1000);
}
- return PETGainedObjectMsg(msg);
+ return CEar::PETGainedObjectMsg(msg);
}
bool CPhonographEar::TimerMsg(CTimerMsg *msg) {