Fixed crash when replacing first character.

This commit is contained in:
Latapostrophe 2018-09-16 11:01:00 +02:00
parent 3145c7a912
commit 05456a4a0f

View file

@ -856,6 +856,9 @@ static inline boolean HU_keyInChatString(char *s, char ch)
{ {
if (s[m]) if (s[m])
s[m+1] = (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. s[c_input] = ch; // and replace this.
} }