aboutsummaryrefslogtreecommitdiff
path: root/debug.cpp
diff options
context:
space:
mode:
authorVincent Hamm2002-02-23 23:23:28 +0000
committerVincent Hamm2002-02-23 23:23:28 +0000
commitcef0ef44d35f9cc05fe51050c116adb86edc66ea (patch)
tree25c718282287d9bec9eb5d285590c482aee67072 /debug.cpp
parentb4123064b491aafc8de04da50da85daa116b1cfd (diff)
downloadscummvm-rg350-cef0ef44d35f9cc05fe51050c116adb86edc66ea.tar.gz
scummvm-rg350-cef0ef44d35f9cc05fe51050c116adb86edc66ea.tar.bz2
scummvm-rg350-cef0ef44d35f9cc05fe51050c116adb86edc66ea.zip
Changed the scummVar system to a dynamic one. Started to remove all the reference to FULL_TROTTLE define.
svn-id: r3624
Diffstat (limited to 'debug.cpp')
-rw-r--r--debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.cpp b/debug.cpp
index 76a11c4548..8b9ea334c4 100644
--- a/debug.cpp
+++ b/debug.cpp
@@ -101,7 +101,7 @@ bool ScummDebugger::do_command() {
printf("Enter a room number...\n");
} else {
int room=atoi(_parameters);
- _s->actor[_s->_vars[VAR_EGO]].room=room;
+ _s->actor[_s->_vars[_s->VAR_EGO]].room=room;
_s->startScene(room, 0, 0);
_s->_fullRedraw = 1;
}