aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreriktorbjorn2011-06-10 20:19:26 +0200
committerAlyssa Milburn2011-06-15 17:34:04 +0200
commit47ed2ce38578cc2148507815ebd60e205576c6d9 (patch)
tree5eae58046d5ef1c489e930a2fec6ad1fd343918c
parent9109f36c042518ab78c1085ce8794e8aa3e4e87b (diff)
downloadscummvm-rg350-47ed2ce38578cc2148507815ebd60e205576c6d9.tar.gz
scummvm-rg350-47ed2ce38578cc2148507815ebd60e205576c6d9.tar.bz2
scummvm-rg350-47ed2ce38578cc2148507815ebd60e205576c6d9.zip
DREAMWEB: Fix typo
-rw-r--r--engines/dreamweb/dreamweb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp
index 98efb3b85d..39baa68e50 100644
--- a/engines/dreamweb/dreamweb.cpp
+++ b/engines/dreamweb/dreamweb.cpp
@@ -652,7 +652,7 @@ sameline:
readabyte(context);
context.cx = context.pop();
context._add(context.bx, context.cx);
- if (--context.cx) context._stosb();
+ while (--context.cx) context._stosb();
context._cmp(context.bx, 4 * 80);
if (!context.flags.z()) goto sameline;
goto endline;