summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2025-03-26 19:15:06 +0100
committerGitHub <noreply@github.com>2025-03-26 14:15:06 -0400
commit05faab33f12b6be2f4bd8e71175f055c70a0f183 (patch)
tree889718ef67bc9fdf5bee487904ad0aa6f3ef1842 /src/code
parentb45f3eba2a8008671eb139cb15f759e09a2c14d9 (diff)
T() macro in overlays 1 (#2486)
* More T() * More T(), up to (including) z_bg_mori* * home pos~~e~~
Diffstat (limited to 'src/code')
-rw-r--r--src/code/z_kankyo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_kankyo.c b/src/code/z_kankyo.c
index ff23bbebc..0bdc048ee 100644
--- a/src/code/z_kankyo.c
+++ b/src/code/z_kankyo.c
@@ -903,9 +903,9 @@ void Environment_PrintDebugInfo(PlayState* play, Gfx** gfx) {
GfxPrint_SetPos(&printer, 22, 6);
if (!IS_DAY) {
- GfxPrint_Printf(&printer, "%s", "YORU"); // "night"
+ GfxPrint_Printf(&printer, "%s", T("YORU", "NIGHT"));
} else {
- GfxPrint_Printf(&printer, "%s", "HIRU"); // "day"
+ GfxPrint_Printf(&printer, "%s", T("HIRU", "DAY"));
}
*gfx = GfxPrint_Close(&printer);