From 7381fcdf305315591fd2d9c66d9804ceb6fd3996 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Tue, 16 Jul 2013 20:30:30 +0100 Subject: TUCKER: Amend fix for bug #3614697 - "Spanish version uncompletable..." The mof instruction needs to return 0 or 1 to continue execution, rather than 2 which indicates to end table instruction execution. Using 0 as this is most likely correct value. --- engines/tucker/tucker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/tucker/tucker.cpp b/engines/tucker/tucker.cpp index 122be958ff..04e83efbe5 100644 --- a/engines/tucker/tucker.cpp +++ b/engines/tucker/tucker.cpp @@ -3238,7 +3238,7 @@ int TuckerEngine::executeTableInstruction() { return 1; case kCode_mof: // TODO: Unknown opcode in Spanish version. Identify if this has any function. - return 2; + return 0; case kCode_opt: _conversationOptionsCount = readTableInstructionParam(2); for (i = 0; i < _conversationOptionsCount; ++i) { -- cgit v1.2.3