aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-09-11 20:49:10 +0000
committerMax Horn2003-09-11 20:49:10 +0000
commitc697e0fa6773fa0036065aab20f5fa1eb16e6ea0 (patch)
tree753a4dbc01b5785ecd1eb95ba18e9d7e15a03e35 /scumm
parent6aa7a63ea0858ebf26e4f1db1c855cc774e584d4 (diff)
downloadscummvm-rg350-c697e0fa6773fa0036065aab20f5fa1eb16e6ea0.tar.gz
scummvm-rg350-c697e0fa6773fa0036065aab20f5fa1eb16e6ea0.tar.bz2
scummvm-rg350-c697e0fa6773fa0036065aab20f5fa1eb16e6ea0.zip
nicer box matrix output in V3-V8 games
svn-id: r10178
Diffstat (limited to 'scumm')
-rw-r--r--scumm/debugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index 771594b827..d225ba13a6 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -822,8 +822,8 @@ bool ScummDebugger::Cmd_PrintBoxMatrix(int argc, const char **argv) {
Debug_Printf("[%d] ", *boxm++);
} else {
while (*boxm != 0xFF) {
- Debug_Printf("[%d] ", *boxm);
- boxm++;
+ Debug_Printf("[%d-%d=>%d] ", boxm[0], boxm[1], boxm[2]);
+ boxm += 3;
}
boxm++;
}