mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-07-10 12:54:52 -04:00
Link libu64/debug.c
This commit is contained in:
+5
-4
@@ -1,8 +1,9 @@
|
||||
#include "libu64/debug.h"
|
||||
#include "libultra/osThread.h"
|
||||
#include "libc64/sprintf.h"
|
||||
|
||||
void _dbg_hungup(const char* name, s32 line) {
|
||||
char dbg_tbuf[0x100];
|
||||
|
||||
sprintf(dbg_tbuf, "*** HungUp in thread %d, [%s:%d] ***\n",osGetThreadId(0), name, line);
|
||||
extern void _dbg_hungup(const char* file, int line) {
|
||||
char dbg_tbuf[0x100];
|
||||
|
||||
sprintf(dbg_tbuf, "*** HungUp in thread %d, [%s:%d] ***\n", osGetThreadId(0), file, line);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user