summaryrefslogtreecommitdiff
path: root/src/code/code_800430A0.c
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2024-08-28 20:01:41 +0200
committerGitHub <noreply@github.com>2024-08-28 14:01:41 -0400
commit16ec9b1e13abca7ef2a978bd1b99935f2dd3b2ab (patch)
treeb81baa5deb652e6a45b81dff3288a37d180c90ea /src/code/code_800430A0.c
parent7592bf1e42a888c0a1974b019b18a13c520727ee (diff)
T() macro 7 (#2102)
* T() macro in most of the rest of code (except z_message, z_actor, ucode_disas, gfxprint, game, fault, db_camera) * remaining T() macro in boot * format * review
Diffstat (limited to 'src/code/code_800430A0.c')
-rw-r--r--src/code/code_800430A0.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/code/code_800430A0.c b/src/code/code_800430A0.c
index a13ecce7e..64c1eee81 100644
--- a/src/code/code_800430A0.c
+++ b/src/code/code_800430A0.c
@@ -42,10 +42,11 @@ void DynaPolyActor_UpdateCarriedActorPos(CollisionContext* colCtx, s32 bgId, Act
PRINTF(VT_FGCOL(RED));
//! @bug file and line are not passed to PRINTF
- // "Position is not valid"
- PRINTF(
- "BGCheckCollection_typicalActorPos():位置が妥当ではありません。\npos (%f,%f,%f) file:%s line:%d\n",
- pos.x, pos.y, pos.z);
+ PRINTF(T("BGCheckCollection_typicalActorPos():位置が妥当ではありません。\n"
+ "pos (%f,%f,%f) file:%s line:%d\n",
+ "BGCheckCollection_typicalActorPos(): Position is not valid. \n"
+ "pos (%f,%f,%f) file:%s line:%d\n"),
+ pos.x, pos.y, pos.z);
PRINTF(VT_RST);
}
#endif