diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-07-07 11:39:34 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2021-07-07 11:39:34 -0500 |
commit | 6aa475c6310c609743a9a2005e7942050c396865 (patch) | |
tree | 18be7369829badfef35a6c337005e875049027e5 /src/debug.c | |
parent | f308c79eba1ba8e6bc2134529a2e4f4f21c9c2c2 (diff) |
Sese's vacation work
Diffstat (limited to 'src/debug.c')
-rw-r--r-- | src/debug.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/debug.c b/src/debug.c index aeccbe8..6b9e8e8 100644 --- a/src/debug.c +++ b/src/debug.c @@ -5,7 +5,7 @@ #include "debug.h" extern void Hang(); -void FatalErrorHang(void) __attribute__((noreturn)); +static void FatalErrorHang(void) __attribute__((noreturn)); extern bool32 gNDS_DebugEnabled; extern u8 gUnknown_203B150; @@ -143,7 +143,7 @@ void nullsub_137(void) } -void FatalErrorPrintFuncFileLine(const char *r0, struct DebugLocation *debug) +static void FatalErrorPrintFuncFileLine(const char *r0, struct DebugLocation *debug) { char buf[0x100]; if(r0 != NULL){ @@ -155,7 +155,7 @@ void FatalErrorPrintFuncFileLine(const char *r0, struct DebugLocation *debug) } } -void FatalErrorFormatMessage(const char *text, ...) +static void FatalErrorFormatMessage(const char *text, ...) { char bufPrint[0x100]; va_list vArgv; @@ -190,7 +190,7 @@ u32 sub_8011BA8(void) } // Unused -const char *sub_8011BAC(void) +const char *GetNotMountText(void) { return gNotMountText; } @@ -232,7 +232,7 @@ void nullsub_32() { } -void FatalErrorHang() +static void FatalErrorHang() { Hang(); } |