aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Hesse2012-01-28 19:45:27 +0100
committerSven Hesse2012-01-28 19:45:27 +0100
commit3a95cdf961c36387968c7db0c9950a0672b097b9 (patch)
tree98f419987a351e96e63a667f9286535e674dac20
parent0eeae6e59e49dbcd72a646a1be0d77aa962e7959 (diff)
downloadscummvm-rg350-3a95cdf961c36387968c7db0c9950a0672b097b9.tar.gz
scummvm-rg350-3a95cdf961c36387968c7db0c9950a0672b097b9.tar.bz2
scummvm-rg350-3a95cdf961c36387968c7db0c9950a0672b097b9.zip
GOB: Correct the variable value for the Diving result
-rw-r--r--engines/gob/inter_geisha.cpp2
1 files changed, 1 insertions, 1 deletions
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 &params) {
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 &params) {