diff options
author | Eugene Sandulenko | 2016-08-19 23:18:29 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-19 23:18:29 +0200 |
commit | 5ec6f572c1b7888b4111566fcf6727ade3f043ea (patch) | |
tree | b6c52ce576e0d21d6f6e1a68f919b0cc76d5ee23 /engines/titanic/carry | |
parent | 164dffd0962dac97ec5fb5b1cb51238df6185633 (diff) | |
download | scummvm-rg350-5ec6f572c1b7888b4111566fcf6727ade3f043ea.tar.gz scummvm-rg350-5ec6f572c1b7888b4111566fcf6727ade3f043ea.tar.bz2 scummvm-rg350-5ec6f572c1b7888b4111566fcf6727ade3f043ea.zip |
TITANIC: Fix infinite recursion
Diffstat (limited to 'engines/titanic/carry')
-rw-r--r-- | engines/titanic/carry/phonograph_ear.cpp | 2 |
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) { |