aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-04-14 03:26:23 +0000
committerTravis Howell2005-04-14 03:26:23 +0000
commit50bf840b9fad86724863e0c323fc3e0d873e9acb (patch)
tree27894a2b249f42941cdc589e29d765a7a9f10f7e
parent8e8c2de3ff9fb2fc2913128c03e46a1df6e6a8e5 (diff)
downloadscummvm-rg350-50bf840b9fad86724863e0c323fc3e0d873e9acb.tar.gz
scummvm-rg350-50bf840b9fad86724863e0c323fc3e0d873e9acb.tar.bz2
scummvm-rg350-50bf840b9fad86724863e0c323fc3e0d873e9acb.zip
Set result back to 1 for now, otherwise chase locks up.
svn-id: r17594
-rw-r--r--scumm/script_v90he.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp
index b22bb0b82d..9ea7e74780 100644
--- a/scumm/script_v90he.cpp
+++ b/scumm/script_v90he.cpp
@@ -1983,7 +1983,7 @@ void ScummEngine_v90he::o90_getLinesIntersectionPoint() {
// XXX compute the intersection point of the 2 lines
writeVar(var_ix, 0);
writeVar(var_iy, 0);
- push(0);
+ push(1);
debug(1, "o90_getLinesIntersectionPoint stub var_x=%d var y=%d line1=(%d,%d,%d,%d) line2=(%d,%d,%d,%d)", var_ix, var_iy, line1_x1, line1_y1, line1_x2, line1_y2, line2_x1, line2_y1, line2_x2, line2_y2);
}