diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-07 17:53:16 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-07 17:53:16 -0400 |
commit | 34ec05f983cec0517765640d084f58e86aa20d79 (patch) | |
tree | e07f5b2f882f1c498093d4fc936975f9e90ed5f6 /arm9/lib/include/OS_system.h | |
parent | 13ecb2f5cb0bbfee814508f6d05d05074d426807 (diff) |
Finish FS_archive.c
Diffstat (limited to 'arm9/lib/include/OS_system.h')
-rw-r--r-- | arm9/lib/include/OS_system.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arm9/lib/include/OS_system.h b/arm9/lib/include/OS_system.h index 1b263b19..88137c3b 100644 --- a/arm9/lib/include/OS_system.h +++ b/arm9/lib/include/OS_system.h @@ -37,9 +37,7 @@ OSProcMode OS_GetProcMode(); void OS_SpinWait(); void OS_WaitVBlankIntr(); void OS_Terminate(void); -static inline void OS_TPanic(const char * message) -{ - OS_Terminate(); -} +#define OS_TPanic(...) OS_Terminate() +#define OS_TWarning(...) ((void)0) #endif //POKEDIAMOND_OS_SYSTEM_H |