diff options
author | Max Horn | 2002-07-26 17:08:20 +0000 |
---|---|---|
committer | Max Horn | 2002-07-26 17:08:20 +0000 |
commit | 673c549975c2758883f8db9f5572e095489a24b7 (patch) | |
tree | 66b3131ff267b093b7cbfb8e81a99563e2a83bdd | |
parent | 9257690ceff252029a3cc8b9acaf0c656c457e77 (diff) | |
download | scummvm-rg350-673c549975c2758883f8db9f5572e095489a24b7.tar.gz scummvm-rg350-673c549975c2758883f8db9f5572e095489a24b7.tar.bz2 scummvm-rg350-673c549975c2758883f8db9f5572e095489a24b7.zip |
fixed stupid typoe
svn-id: r4641
-rw-r--r-- | debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |