From fa64052cb38dfca6e3caa5612d5813e5f26c3e73 Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 11 Mar 2024 23:32:12 -0700 Subject: [PATCH] HUD: fix spacing on some button prompts --- src/k_menudraw.c | 2 +- src/st_stuff.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index b7a193879..800510601 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -5229,7 +5229,7 @@ void M_DrawProfileControls(void) boolean standardbuttons = gamedata->gonerlevel > GDGONER_PROFILE; INT32 xpos = BASEVIDWIDTH - 12; xpos = standardbuttons ? - M_DrawProfileLegend(xpos, ypos, "\xB2/ \xBC Clear", NULL) : + M_DrawProfileLegend(xpos, ypos, "\xB2 / \xBC Clear", NULL) : M_DrawProfileLegend(xpos, ypos, "Clear", "BKSP"); } diff --git a/src/st_stuff.c b/src/st_stuff.c index 9b3007b78..335359ef7 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1472,7 +1472,7 @@ void ST_DrawSaveReplayHint(INT32 flags) V_DrawRightAlignedThinString( BASEVIDWIDTH - 2, 2, flags|V_YELLOWMAP, - demo.willsave ? "Replay will be saved. \xAB" "Change title" : "\xAB" "or " "\xAE" "Save replay" + demo.willsave ? "Replay will be saved. \xAB Change title" : "\xAB or \xAE Save replay" ); }