1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-06 07:56:32 +00:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 137 additions and 139 deletions

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);