summaryrefslogtreecommitdiff
path: root/src/code/z_map_mark.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/z_map_mark.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/z_map_mark.c')
-rw-r--r--src/code/z_map_mark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_map_mark.c b/src/code/z_map_mark.c
index eaaf4c1e7..4fc7d7cfa 100644
--- a/src/code/z_map_mark.c
+++ b/src/code/z_map_mark.c
@@ -72,8 +72,8 @@ void MapMark_DrawForDungeon(PlayState* play) {
interfaceCtx = &play->interfaceCtx;
if ((gMapData != NULL) && (play->interfaceCtx.mapRoomNum >= gMapData->dgnMinimapCount[dungeon])) {
- // "Room number exceeded, yikes %d/%d MapMarkDraw processing interrupted"
- PRINTF(VT_COL(RED, WHITE) "部屋番号がオーバーしてるで,ヤバイで %d/%d \nMapMarkDraw の処理を中断します\n",
+ PRINTF(VT_COL(RED, WHITE) T("部屋番号がオーバーしてるで,ヤバイで %d/%d \nMapMarkDraw の処理を中断します\n",
+ "Room number exceeded, yikes %d/%d \nMapMarkDraw processing interrupted\n"),
VT_RST, play->interfaceCtx.mapRoomNum, gMapData->dgnMinimapCount[dungeon]);
return;
}