diff options
author | Sven Hesse | 2012-01-28 19:45:27 +0100 |
---|---|---|
committer | Sven Hesse | 2012-01-28 19:45:27 +0100 |
commit | 3a95cdf961c36387968c7db0c9950a0672b097b9 (patch) | |
tree | 98f419987a351e96e63a667f9286535e674dac20 | |
parent | 0eeae6e59e49dbcd72a646a1be0d77aa962e7959 (diff) | |
download | scummvm-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.cpp | 2 |
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 ¶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) { |