mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-02 22:41:25 +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)
|
if (con_hudlines <= 0)
|
||||||
return;
|
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.)
|
y = charheight; // leave place for chat input in the first row of text (only do it if consolechat is on.)
|
||||||
else
|
else
|
||||||
y = 0;
|
y = 0;
|
||||||
|
|
|
@ -1860,7 +1860,7 @@ void HU_Drawer(void)
|
||||||
// count down the scroll timer.
|
// count down the scroll timer.
|
||||||
if (chat_scrolltime > 0)
|
if (chat_scrolltime > 0)
|
||||||
chat_scrolltime--;
|
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();
|
HU_DrawChat();
|
||||||
else
|
else
|
||||||
HU_DrawChat_Old(); // why the fuck.........................
|
HU_DrawChat_Old(); // why the fuck.........................
|
||||||
|
|
Loading…
Reference in a new issue