summaryrefslogtreecommitdiff
path: root/src/code/z_actor.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-09-03 20:43:06 -0700
committerGitHub <noreply@github.com>2024-09-03 23:43:06 -0400
commitc8cafdc93ed49b1dd77ac5494acb1da00ec834bf (patch)
tree6f6f416ee48032fb840b044743db09acd2c60f56 /src/code/z_actor.c
parent7a9209c88561ed1d1c8025e4001f0f29e5921cd2 (diff)
Rename FaultDrawer_ functions to Fault_ (#2113)
* Rename FaultDrawer_ functions to Fault_ * Rename FaultDrawer_Init to Fault_InitDrawer
Diffstat (limited to 'src/code/z_actor.c')
-rw-r--r--src/code/z_actor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/z_actor.c b/src/code/z_actor.c
index a5c36daf9..5bd46f49c 100644
--- a/src/code/z_actor.c
+++ b/src/code/z_actor.c
@@ -2385,8 +2385,8 @@ void Actor_FaultPrint(Actor* actor, char* command) {
char* name;
if ((actor == NULL) || (actor->overlayEntry == NULL)) {
- FaultDrawer_SetCursor(48, 24);
- FaultDrawer_Printf("ACTOR NAME is NULL");
+ Fault_SetCursor(48, 24);
+ Fault_Printf("ACTOR NAME is NULL");
}
#if OOT_DEBUG
@@ -2402,8 +2402,8 @@ void Actor_FaultPrint(Actor* actor, char* command) {
PRINTF("コメント:%s\n", command); // "Command:%s"
}
- FaultDrawer_SetCursor(48, 24);
- FaultDrawer_Printf("ACTOR NAME %08x:%s", actor, name);
+ Fault_SetCursor(48, 24);
+ Fault_Printf("ACTOR NAME %08x:%s", actor, name);
}
void Actor_Draw(PlayState* play, Actor* actor) {