mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-15 17:21:34 +00:00
Fix visual error related to moving the cursor on multi-line messages.
This commit is contained in:
parent
0bb24a392e
commit
4320e0f3a8
1 changed files with 1 additions and 1 deletions
|
@ -1565,7 +1565,7 @@ static void HU_DrawChat(void)
|
|||
if (hu_tick < 4)
|
||||
V_DrawChatCharacter(cursorx, cursory+1, '_' |V_SNAPTOBOTTOM|V_SNAPTOLEFT|t, !cv_allcaps.value, NULL);
|
||||
|
||||
if (cursorx == chatx+1) // a weirdo hack
|
||||
if (cursorx == chatx+1 && strlen(w_chat) == i) // a weirdo hack
|
||||
{
|
||||
typelines += 1;
|
||||
skippedline = true;
|
||||
|
|
Loading…
Reference in a new issue