summaryrefslogtreecommitdiff
path: root/src/code/code_800430A0.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-01-12 07:38:13 -0800
committerGitHub <noreply@github.com>2024-01-12 10:38:13 -0500
commit324db1d57830dcb2a45720445ac5d7904a6f5c6a (patch)
tree082de71ba2d4b8457be64e79bd2c37de99bd0ae2 /src/code/code_800430A0.c
parent6eb3bf401cf768a81788e2aa90cb2cafbcd8d763 (diff)
Replace most osSyncPrintf calls with PRINTF macro (#1598)
* Replace most osSyncPrintf calls with PRINTF macro * DEBUG -> OOT_DEBUG
Diffstat (limited to 'src/code/code_800430A0.c')
-rw-r--r--src/code/code_800430A0.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/code_800430A0.c b/src/code/code_800430A0.c
index 98068012f..4c6ae7af6 100644
--- a/src/code/code_800430A0.c
+++ b/src/code/code_800430A0.c
@@ -39,13 +39,13 @@ void DynaPolyActor_UpdateCarriedActorPos(CollisionContext* colCtx, s32 bgId, Act
if (BGCHECK_XYZ_ABSMAX <= pos.x || pos.x <= -BGCHECK_XYZ_ABSMAX || BGCHECK_XYZ_ABSMAX <= pos.y ||
pos.y <= -BGCHECK_XYZ_ABSMAX || BGCHECK_XYZ_ABSMAX <= pos.z || pos.z <= -BGCHECK_XYZ_ABSMAX) {
- osSyncPrintf(VT_FGCOL(RED));
- //! @bug file and line are not passed to osSyncPrintf
+ PRINTF(VT_FGCOL(RED));
+ //! @bug file and line are not passed to PRINTF
// "Position is not valid"
- osSyncPrintf(
+ PRINTF(
"BGCheckCollection_typicalActorPos():位置が妥当ではありません。\npos (%f,%f,%f) file:%s line:%d\n",
pos.x, pos.y, pos.z);
- osSyncPrintf(VT_RST);
+ PRINTF(VT_RST);
}
}
}