aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v80he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-01 01:30:19 +0000
committerTravis Howell2005-05-01 01:30:19 +0000
commit343debba1e3a097fbe47edad1ae4deb3a1a252e0 (patch)
treed68dcfcf8a060c44fb43cf065578c8a42583c3b7 /scumm/script_v80he.cpp
parent2260447e8b7a960a7e92c6c75f0ec66c079581b6 (diff)
downloadscummvm-rg350-343debba1e3a097fbe47edad1ae4deb3a1a252e0.tar.gz
scummvm-rg350-343debba1e3a097fbe47edad1ae4deb3a1a252e0.tar.bz2
scummvm-rg350-343debba1e3a097fbe47edad1ae4deb3a1a252e0.zip
Use correct safety check.
svn-id: r17878
Diffstat (limited to 'scumm/script_v80he.cpp')
-rw-r--r--scumm/script_v80he.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp
index 1385419222..e949a7172e 100644
--- a/scumm/script_v80he.cpp
+++ b/scumm/script_v80he.cpp
@@ -638,7 +638,7 @@ void ScummEngine_v80he::unknownE0(int x1, int y1, int x, int unk1, int unk2, int
}
if (type == 2) {
- Actor *a = derefActorSafe(id, "unknownE0");
+ Actor *a = derefActor(id, "unknownE0");
a->drawActorToBackBuf(x1, y1);
} else if (type == 3) {
WizImage wi;
@@ -701,7 +701,7 @@ void ScummEngine_v80he::unknownE0(int x1, int y1, int x, int unk1, int unk2, int
continue;
if (type == 2) {
- Actor *a = derefActorSafe(id, "unknownE0");
+ Actor *a = derefActor(id, "unknownE0");
a->drawActorToBackBuf(x, y);
} else if (type == 3) {
WizImage wi;