From ac1287a49ace83932c9e335661b262891db75546 Mon Sep 17 00:00:00 2001 From: cadmic Date: Sat, 31 Aug 2024 00:37:55 -0700 Subject: [PATCH] Use FaultDrawer_ names in cic6105.c (#2108) --- src/boot/cic6105.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/boot/cic6105.c b/src/boot/cic6105.c index 1f6469b560..fb6c052e67 100644 --- a/src/boot/cic6105.c +++ b/src/boot/cic6105.c @@ -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) {