aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/callables_ns.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-08-14 19:57:20 +0000
committerNicola Mettifogo2007-08-14 19:57:20 +0000
commit429af74320ceb9d1e1c79bff9e868ecfc87a971a (patch)
tree642e9373c40f17f06612b608ed75bef4dbf99448 /engines/parallaction/callables_ns.cpp
parentdc35b37d9325937b3ece7bfb57c527462790614b (diff)
downloadscummvm-rg350-429af74320ceb9d1e1c79bff9e868ecfc87a971a.tar.gz
scummvm-rg350-429af74320ceb9d1e1c79bff9e868ecfc87a971a.tar.bz2
scummvm-rg350-429af74320ceb9d1e1c79bff9e868ecfc87a971a.zip
Oops oops. This fixes the bug fix.
svn-id: r28623
Diffstat (limited to 'engines/parallaction/callables_ns.cpp')
-rw-r--r--engines/parallaction/callables_ns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/callables_ns.cpp b/engines/parallaction/callables_ns.cpp
index 2e91ef2787..faddecd874 100644
--- a/engines/parallaction/callables_ns.cpp
+++ b/engines/parallaction/callables_ns.cpp
@@ -608,7 +608,7 @@ void Parallaction_ns::_c_sketch(void *parm) {
// when index == 342. Code now checks for this possibility and assigns
// the last valid value to the new coordinates for drawing without
// accessing the array.
- if (index < 342) {
+ if (index == 342) {
newy = oldy;
newx = oldx;
} else {