aboutsummaryrefslogtreecommitdiff
path: root/debug.cpp
diff options
context:
space:
mode:
authorLudvig Strigeus2002-04-12 21:26:59 +0000
committerLudvig Strigeus2002-04-12 21:26:59 +0000
commitd2b0070c5f39661561484f8e2dfd6be271ed21cf (patch)
tree0e751495a08c9514e82879d78a977ad6f27469a7 /debug.cpp
parentb195bb597c32384bf4ce6f9c22ffc281c0828ca4 (diff)
downloadscummvm-rg350-d2b0070c5f39661561484f8e2dfd6be271ed21cf.tar.gz
scummvm-rg350-d2b0070c5f39661561484f8e2dfd6be271ed21cf.tar.bz2
scummvm-rg350-d2b0070c5f39661561484f8e2dfd6be271ed21cf.zip
new video engine (expect broken non-sdl builds),
simon the sorcerer 1 & 2 support (non SCUMM games) svn-id: r3912
Diffstat (limited to 'debug.cpp')
-rw-r--r--debug.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/debug.cpp b/debug.cpp
index 840d430172..8d9121b969 100644
--- a/debug.cpp
+++ b/debug.cpp
@@ -63,6 +63,7 @@ void ScummDebugger::attach(Scumm *s)
}
void BoxTest(int num);
+
bool ScummDebugger::do_command()
{
switch (get_command()) {
@@ -128,7 +129,8 @@ bool ScummDebugger::do_command()
printf("\nWalk boxes:\n");
for (i = 0; i < num; i++) {
- BoxTest(i);
+ warning("BoxTest currently unimplemented in new graphics code\n");
+ /*BoxTest(i);*/
_s->getBoxCoordinates(i, &box);
printf("%d: [%d x %d] [%d x %d] [%d x %d] [%d x %d]\n", i,
box.ul.x, box.ul.y, box.ll.x, box.ll.y,