summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorcoco875 <59367621+coco875@users.noreply.github.com>2023-10-08 00:31:48 +0200
committerGitHub <noreply@github.com>2023-10-07 16:31:48 -0600
commitd8cfed94913f06e31f48b3e63f3e12cfa9907405 (patch)
tree395598dcf9e71e6948f6ded563e47cbaa9d7028c /src/debug
parent2b74bbbcefe396564a55357eda094fc8c8baf36a (diff)
Various Naming (#445)
* Mass renames
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/debug.inc.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/debug/debug.inc.c b/src/debug/debug.inc.c
index 84c903dd6..758bf3600 100644
--- a/src/debug/debug.inc.c
+++ b/src/debug/debug.inc.c
@@ -27,8 +27,8 @@ variableWatchAttributes gMainVariableWatchList[] = {
},
{
"Player Type: ",
- &gPlayers[0].unk_000,
- sizeof(gPlayerOne->unk_000),
+ &gPlayers[0].type,
+ sizeof(gPlayerOne->type),
DISPLAY_HEXIDECIMAL_NUMBER,
0, 0
},
@@ -55,22 +55,22 @@ variableWatchAttributes gMainVariableWatchList[] = {
},
{
"Torque 9C: ",
- &gPlayers[0].unk_09C,
- sizeof(gPlayerOne->unk_09C),
+ &gPlayers[0].currentSpeed,
+ sizeof(gPlayerOne->currentSpeed),
DISPLAY_FLOAT_NUMBER,
0, 0
},
{
"Top Speed 214: ",
- &gPlayers[0].unk_214,
- sizeof(gPlayerOne->unk_214),
+ &gPlayers[0].topSpeed,
+ sizeof(gPlayerOne->topSpeed),
DISPLAY_FLOAT_NUMBER,
0, 0
},
{
"Accel Offset C4: ",
- &gPlayers[0].unk_0C4,
- sizeof(gPlayerOne->unk_0C4),
+ &gPlayers[0].slopeAccel,
+ sizeof(gPlayerOne->slopeAccel),
DISPLAY_SIGNED_NUMBER,
0, 0
},