aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-12-04 20:46:55 +0100
committerWillem Jan Palenstijn2011-12-04 20:48:10 +0100
commit8b2f7360ca825587010ca2314f80cce62013c7fc (patch)
treedab60070b7dee702ba75f4f50201cff59e6be28d
parent5871a6943fa0a07bae81482ed96448cd3763af08 (diff)
downloadscummvm-rg350-8b2f7360ca825587010ca2314f80cce62013c7fc.tar.gz
scummvm-rg350-8b2f7360ca825587010ca2314f80cce62013c7fc.tar.bz2
scummvm-rg350-8b2f7360ca825587010ca2314f80cce62013c7fc.zip
DREAMWEB: Fix loop
-rw-r--r--engines/dreamweb/pathfind.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/pathfind.cpp b/engines/dreamweb/pathfind.cpp
index 66a02284be..a8ac4acf70 100644
--- a/engines/dreamweb/pathfind.cpp
+++ b/engines/dreamweb/pathfind.cpp
@@ -245,7 +245,7 @@ void DreamGenContext::bresenhams() {
remainder += data.word(kIncrement2);
++x;
}
- } while (delta1);
+ }
}
}