From 28dc37e627814a15bff752bea2cf9a0492559e6a Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 16 Aug 2015 21:41:18 -0400 Subject: [PATCH] SHERLOCK: RT: Fix return of findSpeaker --- engines/sherlock/tattoo/tattoo_people.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sherlock/tattoo/tattoo_people.cpp b/engines/sherlock/tattoo/tattoo_people.cpp index c5b03b285d81..4974b3df4076 100644 --- a/engines/sherlock/tattoo/tattoo_people.cpp +++ b/engines/sherlock/tattoo/tattoo_people.cpp @@ -1370,7 +1370,7 @@ int TattooPeople::findSpeaker(int speaker) { } } - return -1; + return result; } void TattooPeople::synchronize(Serializer &s) {