Small fix
This commit is contained in:
parent
a8537ed67b
commit
bb018bc76b
@ -26,12 +26,12 @@ namespace input
|
|||||||
|
|
||||||
void cl_char_event_stub(const int local_client_num, const int key)
|
void cl_char_event_stub(const int local_client_num, const int key)
|
||||||
{
|
{
|
||||||
if (!gui::gui_char_event(local_client_num, key))
|
if (!game_console::console_char_event(local_client_num, key))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!game_console::console_char_event(local_client_num, key))
|
if (!gui::gui_char_event(local_client_num, key))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -47,12 +47,12 @@ namespace input
|
|||||||
|
|
||||||
void cl_key_event_stub(const int local_client_num, const int key, const int down)
|
void cl_key_event_stub(const int local_client_num, const int key, const int down)
|
||||||
{
|
{
|
||||||
if (!gui::gui_key_event(local_client_num, key, down))
|
if (!game_console::console_key_event(local_client_num, key, down))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!game_console::console_key_event(local_client_num, key, down))
|
if (!gui::gui_key_event(local_client_num, key, down))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user