diff options
| author | Tharo <17233964+Thar0@users.noreply.github.com> | 2021-08-07 17:43:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-07 12:43:11 -0400 |
| commit | 1c544d235172053de78e568798df1cd40ba06688 (patch) | |
| tree | 902eb44e077d460bf59b5def7cadd3a4ed2556ec /src/boot_O2_g3 | |
| parent | 1836844ea85cb33f67cec08f4d4f06a212c943bf (diff) | |
sched.c OK (#248)
* sched
* Minor fixes
* Format headers in the ultra64 folder, bitshifts in defines
* Fix PI_STATUS_ERROR
* Update variables
Diffstat (limited to 'src/boot_O2_g3')
| -rw-r--r-- | src/boot_O2_g3/fault.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/boot_O2_g3/fault.c b/src/boot_O2_g3/fault.c index ed8ee6e3a..3cc3deb35 100644 --- a/src/boot_O2_g3/fault.c +++ b/src/boot_O2_g3/fault.c @@ -712,7 +712,10 @@ void Fault_ProcessClients(void) { if (iter->callback) { Fault_FillScreenBlack(); FaultDrawer_SetCharPad(-2, 0); - FaultDrawer_Printf("8CallBack (%d) %08x %08x %08x\n7", idx++, iter, iter->param0, iter->param1); + FaultDrawer_Printf("\x1A\x38" + "CallBack (%d) %08x %08x %08x\n" + "\x1A\x37", + idx++, iter, iter->param0, iter->param1); FaultDrawer_SetCharPad(0, 0); iter->callback(iter->param0, iter->param1); Fault_WaitForInput(); |
