Fix console text bleeding

This commit is contained in:
SwitchKaze 2021-03-25 12:43:30 -05:00 committed by toaster
parent fe204dbc87
commit 8ef8cb5b5f

View file

@ -1717,6 +1717,7 @@ static void CON_DrawHudlines(void)
{
charflags = (*p & 0x7f) << V_CHARCOLORSHIFT;
p++;
c++;
}
if (*p < HU_FONTSTART)
;//charwidth = 4 * con_scalefactor;
@ -1838,6 +1839,7 @@ static void CON_DrawConsole(void)
{
charflags = (*p & 0x7f) << V_CHARCOLORSHIFT;
p++;
c++;
}
V_DrawCharacter(x, y, (INT32)(*p) | charflags | cv_constextsize.value | V_NOSCALESTART, true);
}