aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/debugger.cpp
diff options
context:
space:
mode:
authorStrangerke2012-06-11 20:24:25 +0200
committerStrangerke2012-06-11 20:24:25 +0200
commit02c8ccebcb20aa904dba3151d65a7b4fa67998fe (patch)
treed1b5e2137dc2d92b0ac34cc7fffae732497edc4b /engines/tony/debugger.cpp
parent71329df502bb07f105f34ac6c4b871ee0e8e19e0 (diff)
downloadscummvm-rg350-02c8ccebcb20aa904dba3151d65a7b4fa67998fe.tar.gz
scummvm-rg350-02c8ccebcb20aa904dba3151d65a7b4fa67998fe.tar.bz2
scummvm-rg350-02c8ccebcb20aa904dba3151d65a7b4fa67998fe.zip
TONY: Rename variables in utils.h
Diffstat (limited to 'engines/tony/debugger.cpp')
-rw-r--r--engines/tony/debugger.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tony/debugger.cpp b/engines/tony/debugger.cpp
index 1a4dc16b75..8beb7285a4 100644
--- a/engines/tony/debugger.cpp
+++ b/engines/tony/debugger.cpp
@@ -94,8 +94,8 @@ bool Debugger::Cmd_Scene(int argc, const char **argv) {
RMPoint scenePos;
if (argc >= 4) {
- scenePos.x = strToInt(argv[2]);
- scenePos.y = strToInt(argv[3]);
+ scenePos._x = strToInt(argv[2]);
+ scenePos._y = strToInt(argv[3]);
} else {
// Get the box areas for the scene, and choose one so as to have a default
// position for Tony that will be in the walkable areas
@@ -106,8 +106,8 @@ bool Debugger::Cmd_Scene(int argc, const char **argv) {
// Set up a process to change the scene
ChangeSceneDetails details;
details.sceneNumber = sceneNumber;
- details.x = scenePos.x;
- details.y = scenePos.y;
+ details.x = scenePos._x;
+ details.y = scenePos._y;
CoroScheduler.createProcess(DebugChangeScene, &details, sizeof(ChangeSceneDetails));
return false;