M_DrawMenuTyping: Slightly more consistent spacing for single-char virtual keys

The entire virtual keyboard needs a visual redesign, but this will make navigating it slightly easier for now.
This commit is contained in:
toaster 2023-05-19 12:51:40 +01:00
parent 16649d0754
commit 03a7f33c55

View file

@ -425,7 +425,7 @@ static void M_DrawMenuTyping(void)
V_DrawString(x, y, V_ALLOWLOWERCASE|tflag|mflag, buf);
x += V_StringWidth(buf, 0)+8;
x += (buf[1] ? V_StringWidth(buf, 0) : 8) + 8;
}
x = 60;
y += 12;