diff options
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_kankyo.c | 4 |
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); |
