aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2002-07-26 17:08:20 +0000
committerMax Horn2002-07-26 17:08:20 +0000
commit673c549975c2758883f8db9f5572e095489a24b7 (patch)
tree66b3131ff267b093b7cbfb8e81a99563e2a83bdd
parent9257690ceff252029a3cc8b9acaf0c656c457e77 (diff)
downloadscummvm-rg350-673c549975c2758883f8db9f5572e095489a24b7.tar.gz
scummvm-rg350-673c549975c2758883f8db9f5572e095489a24b7.tar.bz2
scummvm-rg350-673c549975c2758883f8db9f5572e095489a24b7.zip
fixed stupid typoe
svn-id: r4641
-rw-r--r--debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.cpp b/debug.cpp
index 37cc9c609c..479edea0ec 100644
--- a/debug.cpp
+++ b/debug.cpp
@@ -132,7 +132,7 @@ bool ScummDebugger::do_command()
_s->getBoxCoordinates(i, &box);
flags = _s->getBoxFlags(i);
printf("%d: [%d x %d] [%d x %d] [%d x %d] [%d x %d], flags=0x%02x\n", i,
- box.ul.x, box.ul.y, box.ll.x, box.ll.y, box.ur.x, box.ur.y, box.lr.x, box.lr.y), flags;
+ box.ul.x, box.ul.y, box.ll.x, box.ll.y, box.ur.x, box.ur.y, box.lr.x, box.lr.y, flags);
}
}
return true;