HUD: fix spacing on some button prompts

This commit is contained in:
James R 2024-03-11 23:32:12 -07:00
parent 50339b68f5
commit fa64052cb3
2 changed files with 2 additions and 2 deletions

View file

@ -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");
}

View file

@ -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"
);
}