diff options
| author | Willem Jan Palenstijn | 2011-12-04 20:46:55 +0100 |
|---|---|---|
| committer | Willem Jan Palenstijn | 2011-12-04 20:48:10 +0100 |
| commit | 8b2f7360ca825587010ca2314f80cce62013c7fc (patch) | |
| tree | dab60070b7dee702ba75f4f50201cff59e6be28d | |
| parent | 5871a6943fa0a07bae81482ed96448cd3763af08 (diff) | |
| download | scummvm-rg350-8b2f7360ca825587010ca2314f80cce62013c7fc.tar.gz scummvm-rg350-8b2f7360ca825587010ca2314f80cce62013c7fc.tar.bz2 scummvm-rg350-8b2f7360ca825587010ca2314f80cce62013c7fc.zip | |
DREAMWEB: Fix loop
| -rw-r--r-- | engines/dreamweb/pathfind.cpp | 2 |
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); + } } } |
