mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix underscore for virtual keyboard/menu typing interface
Surprised it ever worked, inexplicably was converted to a color!?
This commit is contained in:
parent
4b5612954f
commit
40dfe494cc
1 changed files with 2 additions and 2 deletions
|
|
@ -419,7 +419,7 @@ static void M_DrawMenuTyping(void)
|
||||||
&& menutyping.menutypingclose == false
|
&& menutyping.menutypingclose == false
|
||||||
&& menutyping.menutypingfade == (menutyping.keyboardtyping ? 9 : 18))
|
&& menutyping.menutypingfade == (menutyping.keyboardtyping ? 9 : 18))
|
||||||
{
|
{
|
||||||
V_DrawCharacter(x + 8 + V_StringWidth(cv->string, 0), y + 12 + 1, '_' | 0x80, false);
|
V_DrawCharacter(x + 8 + V_StringWidth(cv->string, 0), y + 12 + 1, '_', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
const INT32 buttonwidth = ((boxwidth + 1)/NUMVIRTUALKEYSINROW);
|
const INT32 buttonwidth = ((boxwidth + 1)/NUMVIRTUALKEYSINROW);
|
||||||
|
|
@ -3734,7 +3734,7 @@ void M_DrawEditProfile(void)
|
||||||
V_DrawFill(0, y+24, 400 - (menutransition.tics*64), 16, itemOn == i ? 169 : 30); // 169 is the plague colourization
|
V_DrawFill(0, y+24, 400 - (menutransition.tics*64), 16, itemOn == i ? 169 : 30); // 169 is the plague colourization
|
||||||
V_DrawString(x + 8, y + 29, 0, cv->string);
|
V_DrawString(x + 8, y + 29, 0, cv->string);
|
||||||
if (skullAnimCounter < 4 && i == itemOn)
|
if (skullAnimCounter < 4 && i == itemOn)
|
||||||
V_DrawCharacter(x + 8 + V_StringWidth(cv->string, 0), y + 29, '_' | 0x80, false);
|
V_DrawCharacter(x + 8 + V_StringWidth(cv->string, 0), y + 29, '_', false);
|
||||||
y += 16;
|
y += 16;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue