mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-20 06:58:20 +00:00
fixed space in chat :D
This commit is contained in:
parent
ad19e0702e
commit
16280e411c
|
@ -805,7 +805,7 @@ void render_game()
|
||||||
{
|
{
|
||||||
INPUT_EVENT e = inp_get_event(i);
|
INPUT_EVENT e = inp_get_event(i);
|
||||||
|
|
||||||
if(e.ch > 32)
|
if(e.ch >= 32)
|
||||||
{
|
{
|
||||||
if (chat_input_len < sizeof(chat_input) - 1)
|
if (chat_input_len < sizeof(chat_input) - 1)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue