mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-15 06:06:04 +00:00
Use FaultDrawer_ names in cic6105.c (#2108)
This commit is contained in:
parent
1eeb03e5bb
commit
ac1287a49a
1 changed files with 10 additions and 10 deletions
|
@ -28,19 +28,19 @@ void CIC6105_FaultClient(void) {
|
||||||
s32 spStatus;
|
s32 spStatus;
|
||||||
|
|
||||||
spStatus = IO_READ(SP_STATUS_REG);
|
spStatus = IO_READ(SP_STATUS_REG);
|
||||||
Fault_SetCursor(48, 200);
|
FaultDrawer_SetCursor(48, 200);
|
||||||
if (spStatus & SP_STATUS_SIG7) {
|
if (spStatus & SP_STATUS_SIG7) {
|
||||||
Fault_Printf("OCARINA %08x %08x", B_80008EF8, B_80008EFC);
|
FaultDrawer_Printf("OCARINA %08x %08x", B_80008EF8, B_80008EFC);
|
||||||
} else {
|
} else {
|
||||||
Fault_Printf("LEGEND %08x %08x", B_80008EF8, B_80008EFC);
|
FaultDrawer_Printf("LEGEND %08x %08x", B_80008EF8, B_80008EFC);
|
||||||
}
|
}
|
||||||
Fault_SetCursor(40, 184);
|
FaultDrawer_SetCursor(40, 184);
|
||||||
Fault_Printf("ROM_F");
|
FaultDrawer_Printf("ROM_F");
|
||||||
Fault_Printf(" [Creator:%s]", gBuildTeam);
|
FaultDrawer_Printf(" [Creator:%s]", gBuildTeam);
|
||||||
Fault_SetCursor(56, 192);
|
FaultDrawer_SetCursor(56, 192);
|
||||||
Fault_Printf("[Date:%s]", gBuildDate);
|
FaultDrawer_Printf("[Date:%s]", gBuildDate);
|
||||||
Fault_SetCursor(96, 32);
|
FaultDrawer_SetCursor(96, 32);
|
||||||
Fault_Printf("I LOVE YOU %08x", func_80001714());
|
FaultDrawer_Printf("I LOVE YOU %08x", func_80001714());
|
||||||
}
|
}
|
||||||
|
|
||||||
void CIC6105_AddFaultClient(void) {
|
void CIC6105_AddFaultClient(void) {
|
||||||
|
|
Loading…
Reference in a new issue