1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-14 21:40:03 +00:00

Use FaultDrawer_ names in cic6105.c (#2108)

This commit is contained in:
cadmic 2024-08-31 00:37:55 -07:00 committed by GitHub
parent 1eeb03e5bb
commit ac1287a49a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,19 +28,19 @@ void CIC6105_FaultClient(void) {
s32 spStatus;
spStatus = IO_READ(SP_STATUS_REG);
Fault_SetCursor(48, 200);
FaultDrawer_SetCursor(48, 200);
if (spStatus & SP_STATUS_SIG7) {
Fault_Printf("OCARINA %08x %08x", B_80008EF8, B_80008EFC);
FaultDrawer_Printf("OCARINA %08x %08x", B_80008EF8, B_80008EFC);
} else {
Fault_Printf("LEGEND %08x %08x", B_80008EF8, B_80008EFC);
FaultDrawer_Printf("LEGEND %08x %08x", B_80008EF8, B_80008EFC);
}
Fault_SetCursor(40, 184);
Fault_Printf("ROM_F");
Fault_Printf(" [Creator:%s]", gBuildTeam);
Fault_SetCursor(56, 192);
Fault_Printf("[Date:%s]", gBuildDate);
Fault_SetCursor(96, 32);
Fault_Printf("I LOVE YOU %08x", func_80001714());
FaultDrawer_SetCursor(40, 184);
FaultDrawer_Printf("ROM_F");
FaultDrawer_Printf(" [Creator:%s]", gBuildTeam);
FaultDrawer_SetCursor(56, 192);
FaultDrawer_Printf("[Date:%s]", gBuildDate);
FaultDrawer_SetCursor(96, 32);
FaultDrawer_Printf("I LOVE YOU %08x", func_80001714());
}
void CIC6105_AddFaultClient(void) {