diff options
author | Le Philousophe | 2019-05-11 12:50:16 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-06-01 22:43:48 +0200 |
commit | 67e76c3b566f9ba8eb378644d935c6f06b32b675 (patch) | |
tree | b6423692b6dee0484c8dc30c317732d7120c4cc6 | |
parent | 995b10e71ec9a69a30bab5bbe4da2cf44f3befa0 (diff) | |
download | scummvm-rg350-67e76c3b566f9ba8eb378644d935c6f06b32b675.tar.gz scummvm-rg350-67e76c3b566f9ba8eb378644d935c6f06b32b675.tar.bz2 scummvm-rg350-67e76c3b566f9ba8eb378644d935c6f06b32b675.zip |
CRYOMNI3D: Forgot to deselect object after talking to Bontemps
-rw-r--r-- | engines/cryomni3d/versailles/logic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/cryomni3d/versailles/logic.cpp b/engines/cryomni3d/versailles/logic.cpp index 5cf2354fb2..45a0d2ecc8 100644 --- a/engines/cryomni3d/versailles/logic.cpp +++ b/engines/cryomni3d/versailles/logic.cpp @@ -2695,6 +2695,7 @@ FILTER_EVENT(2, 1) { _inventory.removeByNameID(98); setGameTime(2, 2); } + _inventory.deselectObject(); } else if (*event == 31101) { if (!_inventory.selectedObject() && currentGameTime() > 1) { const char *video; |