mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
fixed so that you can't bind esc
This commit is contained in:
parent
e8b68bcd33
commit
64dd53133c
|
@ -682,7 +682,9 @@ int ui2_do_key_reader(void *id, const RECT *rect, int key)
|
|||
int k = inp_last_key();
|
||||
if (k)
|
||||
{
|
||||
new_key = k;
|
||||
if(k != KEY_ESC)
|
||||
new_key = k;
|
||||
|
||||
ui_set_active_item(0);
|
||||
mouse_released = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue