aboutsummaryrefslogtreecommitdiff
path: root/engines/lure
diff options
context:
space:
mode:
authorMax Horn2006-04-29 11:56:59 +0000
committerMax Horn2006-04-29 11:56:59 +0000
commit0aabdf821c579eae8eb1f7e77399d89328eb4748 (patch)
tree0e058706975ee27c1fa2294088129104603f4b46 /engines/lure
parent1192f0dfca144db2b6913ce8db950dce028d012c (diff)
downloadscummvm-rg350-0aabdf821c579eae8eb1f7e77399d89328eb4748.tar.gz
scummvm-rg350-0aabdf821c579eae8eb1f7e77399d89328eb4748.tar.bz2
scummvm-rg350-0aabdf821c579eae8eb1f7e77399d89328eb4748.zip
Fix warning
svn-id: r22210
Diffstat (limited to 'engines/lure')
-rw-r--r--engines/lure/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/game.cpp b/engines/lure/game.cpp
index 0b756694d0..358e41e5bf 100644
--- a/engines/lure/game.cpp
+++ b/engines/lure/game.cpp
@@ -359,7 +359,7 @@ void Game::handleRightClickMenu() {
if (action != NONE) {
player->stopWalking();
- doAction(action, (hotspot != NULL) ? hotspot->hotspotId : NULL, itemId);
+ doAction(action, (hotspot != NULL) ? hotspot->hotspotId : 0, itemId);
}
}