summaryrefslogtreecommitdiff
path: root/src/debug/debug.inc.c
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-05-01 10:09:49 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-05-01 10:09:49 -0600
commita2c3feb67a2f8afb1cebd0e77e4a3e23db2c28c4 (patch)
tree4250a53478f87b8b07e16481a634ef16550ddb43 /src/debug/debug.inc.c
parentd5264825f0a7ab67f53fca8857cbd24dd86ee86d (diff)
WIP Compilation
Diffstat (limited to 'src/debug/debug.inc.c')
-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 758bf3600..82f26be03 100644
--- a/src/debug/debug.inc.c
+++ b/src/debug/debug.inc.c
@@ -1,4 +1,4 @@
-#include <ultra64.h>
+#include <libultraship.h>
#include <debug.h>
#include "all_variables.h"
@@ -6,7 +6,7 @@
extern s32 gGlobalTimer;
-/**
+/**
* Edit this to edit what displays on the screen while the DVDL is active.
* The Size of the structure array is calculated at compile time.
*/
@@ -14,42 +14,42 @@ variableWatchAttributes gMainVariableWatchList[] = {
{
"Global Timer: ",
&gGlobalTimer,
- sizeof(gGlobalTimer),
+ sizeof(gGlobalTimer),
DISPLAY_DECIMAL_NUMBER | DISPLAY_SIGNED_NUMBER,
0, 0
},
{
"Actors: ",
&gNumActors,
- sizeof(gNumActors),
+ sizeof(gNumActors),
DISPLAY_DECIMAL_NUMBER,
0, 0
},
{
"Player Type: ",
&gPlayers[0].type,
- sizeof(gPlayerOne->type),
+ sizeof(gPlayerOne->type),
DISPLAY_HEXIDECIMAL_NUMBER,
0, 0
},
{
"X ",
&gPlayers[0].pos[0],
- sizeof(gPlayerOne->pos[0]),
+ sizeof(gPlayerOne->pos[0]),
DISPLAY_FLOAT_NUMBER,
0, 0
},
{
"Y ",
&gPlayers[0].pos[1],
- sizeof(gPlayerOne->pos[1]),
+ sizeof(gPlayerOne->pos[1]),
DISPLAY_FLOAT_NUMBER,
0, 0
},
{
"Z ",
&gPlayers[0].pos[2],
- sizeof(gPlayerOne->pos[2]),
+ sizeof(gPlayerOne->pos[2]),
DISPLAY_FLOAT_NUMBER,
0, 0
},