T() macro in overlays 1 (#2486)

* More T()

* More T(), up to (including) z_bg_mori*

* home pos~~e~~
This commit is contained in:
Dragorn421
2025-03-26 19:15:06 +01:00
committed by GitHub
parent b45f3eba2a
commit 05faab33f1
32 changed files with 137 additions and 139 deletions
+2 -2
View File
@@ -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);