mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-03-25 04:11:05 +00:00
Fixed crash when replacing first character.
This commit is contained in:
parent
ccc6f71980
commit
0bb24a392e
1 changed files with 3 additions and 0 deletions
|
@ -856,6 +856,9 @@ static inline boolean HU_keyInChatString(char *s, char ch)
|
|||
{
|
||||
if (s[m])
|
||||
s[m+1] = (s[m]);
|
||||
|
||||
if (m < 1)
|
||||
break; // fix the chat going ham if your replace the first character. (For whatever reason this didn't happen in vanilla????)
|
||||
}
|
||||
s[c_input] = ch; // and replace this.
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue