mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-27 03:30:50 +00:00
Fixed sub 400p chat for console
This commit is contained in:
parent
ad187c26f0
commit
03dc4c9680
2 changed files with 2 additions and 2 deletions
|
@ -1443,7 +1443,7 @@ static void CON_DrawHudlines(void)
|
|||
if (con_hudlines <= 0)
|
||||
return;
|
||||
|
||||
if (chat_on && cv_consolechat.value)
|
||||
if (chat_on && (cv_consolechat.value || vid.width < 640))
|
||||
y = charheight; // leave place for chat input in the first row of text (only do it if consolechat is on.)
|
||||
else
|
||||
y = 0;
|
||||
|
|
|
@ -1860,7 +1860,7 @@ void HU_Drawer(void)
|
|||
// count down the scroll timer.
|
||||
if (chat_scrolltime > 0)
|
||||
chat_scrolltime--;
|
||||
if (!cv_consolechat.value && vid.width >= 640) // don't even bother with 200p
|
||||
if (!cv_consolechat.value && vid.width > 320) // don't even bother with 200p
|
||||
HU_DrawChat();
|
||||
else
|
||||
HU_DrawChat_Old(); // why the fuck.........................
|
||||
|
|
Loading…
Reference in a new issue