aboutsummaryrefslogtreecommitdiff
path: root/kyra/script_v1.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2005-12-09 19:49:47 +0000
committerJohannes Schickel2005-12-09 19:49:47 +0000
commitb90e114f2c562afeaa2cc2c14ceb71e6b683da2f (patch)
tree29097f8979def241c7297299a420681250dbac22 /kyra/script_v1.cpp
parent69114bb80dc8b8f0c4326e2aed43050ed3d52124 (diff)
downloadscummvm-rg350-b90e114f2c562afeaa2cc2c14ceb71e6b683da2f.tar.gz
scummvm-rg350-b90e114f2c562afeaa2cc2c14ceb71e6b683da2f.tar.bz2
scummvm-rg350-b90e114f2c562afeaa2cc2c14ceb71e6b683da2f.zip
Implemented item dropping into a scene and renamed unkItemFunction to processItemDrop.
svn-id: r19765
Diffstat (limited to 'kyra/script_v1.cpp')
-rw-r--r--kyra/script_v1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kyra/script_v1.cpp b/kyra/script_v1.cpp
index 4b20fd2cdd..966625faa8 100644
--- a/kyra/script_v1.cpp
+++ b/kyra/script_v1.cpp
@@ -1357,7 +1357,7 @@ int KyraEngine::cmd_setEntranceMouseCursorTrack(ScriptState *script) {
int KyraEngine::cmd_itemAppearsOnGround(ScriptState *script) {
debug(3, "cmd_itemAppearsOnGround(0x%X) (%d, %d, %d)", script, stackPos(0), stackPos(1), stackPos(2));
- unkItemFunction(_currentCharacter->sceneId, stackPos(0), stackPos(1), stackPos(2), 2, 0);
+ processItemDrop(_currentCharacter->sceneId, stackPos(0), stackPos(1), stackPos(2), 2, 0);
return 0;
}