Match & link dvderr.c

This commit is contained in:
Cuyler36
2023-05-22 06:15:38 -04:00
parent ea1266b192
commit 1d2def2717
14 changed files with 170 additions and 21 deletions
+1 -1
View File
@@ -666,4 +666,4 @@ int main(int argc, const char** argv) {
OSReport("どうぶつの森ブートローダ終了\n"); /* Animal Crossing bootloader end */
JW_Cleanup();
return 0;
}
}
+4 -2
View File
@@ -1,6 +1,8 @@
#include "fault.h"
#include "terminal.h"
__declspec(section ".sdata") static fault* this;
#include "va_args.h"
/*__declspec(section ".sdata")*/ static fault* this;
static fault fault_class;
extern void fault_AddClientEx(fault_client* client, FaultCallback callback, const char* msg, u32 param, u8 priority, u8 flags) {
@@ -46,7 +48,7 @@ extern void fault_AddClientEx(fault_client* client, FaultCallback callback, cons
exit:
OSRestoreInterrupts(enable);
if (client_exists != FALSE) {
OSReport(VTCOL(RED,WHITE)"fault_AddClient: %08x は既にリスト中にある\n%x",VT_RST, client);
OSReport(VT_COL(VT_COLOR_RED,VT_COLOR_WHITE) "fault_AddClient: %08x は既にリスト中にある\n%x" VT_RST, client);
}
}