diff options
author | Torbjörn Andersson | 2003-05-23 15:48:07 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-05-23 15:48:07 +0000 |
commit | 8feba0dfaffc86140e03e2c6f8e633d3f74c9a33 (patch) | |
tree | 92b61dc77eab557e09a73b269a29d585c8b7a3cc /scumm | |
parent | e52ca34bb4d4448ecaddda95a6241da877023e67 (diff) | |
download | scummvm-rg350-8feba0dfaffc86140e03e2c6f8e633d3f74c9a33.tar.gz scummvm-rg350-8feba0dfaffc86140e03e2c6f8e633d3f74c9a33.tar.bz2 scummvm-rg350-8feba0dfaffc86140e03e2c6f8e633d3f74c9a33.zip |
cleanup
svn-id: r7866
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v8.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 56e745abcb..b6e1aaae3a 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1661,7 +1661,7 @@ void Scumm_v8::o8_getActorChore() { void Scumm_v8::o8_getActorZPlane() { int actnum = pop(); - Actor *a = derefActor(actnum, "o8_getActorChore"); + Actor *a = derefActor(actnum, "o8_getActorZPlane"); int z = a->forceClip; if (z == 100) { |