From: DeaDDooMER Date: Tue, 30 Apr 2019 16:54:02 +0000 (+0300) Subject: fixed chat input AGAIN X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=043af909368ca8f82e418f0e5e440478b89eb3d4 fixed chat input AGAIN --- diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 33bfcf7..9a2bd99 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -1727,7 +1727,7 @@ end; procedure g_Console_ProcessBind (key: Integer; down: Boolean); var i: Integer; begin - if (not g_GUIGrabInput) and (key >= 0) and (key < e_MaxInputKeys) and ((gInputBinds[key].down <> nil) or (gInputBinds[key].up <> nil)) then + if (not g_GUIGrabInput) and (not gChatShow) and (key >= 0) and (key < e_MaxInputKeys) and ((gInputBinds[key].down <> nil) or (gInputBinds[key].up <> nil)) then begin if down then for i := 0 to High(gInputBinds[key].down) do