From d63e03a00e4db2389e7d72c0c6b9f9f13b05a5de Mon Sep 17 00:00:00 2001 From: James Brown Date: Sat, 11 May 2002 19:17:58 +0000 Subject: Add paramless 'r' debug command to show the current room. svn-id: r4280 --- debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debug.cpp') diff --git a/debug.cpp b/debug.cpp index 4116086eb3..8331168912 100644 --- a/debug.cpp +++ b/debug.cpp @@ -73,7 +73,7 @@ bool ScummDebugger::do_command() "(q)uit -> quit the debugger\n" "(g)o [numframes] -> increase frame\n" "(a)ctor [actornum] -> show actor information\n" - "(r)oom roomnum -> load room\n" + "(r)oom [roomnum] -> load room\n" "(s)cripts -> show running scripts\n" "(b)oxes -> list and draw boxen\n" "(v)ariable -> set or show a variable value\n" @@ -102,7 +102,7 @@ bool ScummDebugger::do_command() return true; case CMD_LOAD_ROOM: if (!_parameters[0]) { - printf("Enter a room number...\n"); + printf("Current room: %d [%d]\n", _s->_currentRoom, _s->_roomResource); } else { int room = atoi(_parameters); _s->actor[_s->_vars[_s->VAR_EGO]].room = room; -- cgit v1.2.3