This commit is contained in:
a
2025-06-30 19:56:53 -04:00
parent 3ca23d62b2
commit 09be7e4175

View File

@@ -168,6 +168,7 @@ void crash_screen_print_fpcsr(u32 fpcsr) {
bit = 1 << 17;
crash_screen_print(30, 155, "FPCSR:%08XH", fpcsr);
n64_printf("FPCSR:%08XH", fpcsr);
for (i = 0; i < 6; i++) {
if (fpcsr & bit) {
crash_screen_print(132, 155, "(%s)", gFpcsrDesc[i]);
@@ -176,6 +177,7 @@ void crash_screen_print_fpcsr(u32 fpcsr) {
}
bit >>= 1;
}
n64_printf("\n\n");
}
void draw_crash_screen(OSThread *thread) {