From 3a95cdf961c36387968c7db0c9950a0672b097b9 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Sat, 28 Jan 2012 19:45:27 +0100 Subject: GOB: Correct the variable value for the Diving result --- engines/gob/inter_geisha.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/gob/inter_geisha.cpp b/engines/gob/inter_geisha.cpp index c5b91a484b..1f2a7fab7f 100644 --- a/engines/gob/inter_geisha.cpp +++ b/engines/gob/inter_geisha.cpp @@ -280,7 +280,7 @@ void Inter_Geisha::oGeisha_gameDiving(OpGobParams ¶ms) { bool result = _diving->play(playerCount, hasPearlLocation); - WRITE_VAR_UINT32(resultVar, result ? 1 : 0); + WRITE_VAR_UINT32(resultVar, result ? 0 : 1); } void Inter_Geisha::oGeisha_loadTitleMusic(OpGobParams ¶ms) { -- cgit v1.2.3