mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
forward port the x11 repeat fix
This commit is contained in:
parent
83e0754e41
commit
879a133c19
3 changed files with 2 additions and 4 deletions
|
@ -464,8 +464,6 @@ IN_LL_Init (void)
|
|||
XChangeWindowAttributes (x_disp, x_win, attribmask, &attribs_2);
|
||||
}
|
||||
|
||||
XAutoRepeatOff (x_disp);
|
||||
|
||||
if (COM_CheckParm ("-nomouse"))
|
||||
return;
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ int key_lastpress;
|
|||
int edit_line = 0;
|
||||
int history_line = 0;
|
||||
|
||||
keydest_t key_dest;
|
||||
keydest_t key_dest = key_console;
|
||||
|
||||
char *keybindings[256];
|
||||
qboolean consolekeys[256]; // if true, can't be rebound while in
|
||||
|
|
|
@ -67,7 +67,7 @@ int key_lastpress;
|
|||
int edit_line = 0;
|
||||
int history_line = 0;
|
||||
|
||||
keydest_t key_dest;
|
||||
keydest_t key_dest = key_console;
|
||||
|
||||
char *keybindings[256];
|
||||
qboolean consolekeys[256]; // if true, can't be rebound while in
|
||||
|
|
Loading…
Reference in a new issue