mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix a braino
This commit is contained in:
parent
1f9d75a7c7
commit
dd989c18ff
1 changed files with 2 additions and 2 deletions
|
@ -622,13 +622,13 @@ IN_LL_Grab_Input (int grab)
|
|||
return;
|
||||
}
|
||||
input_grabbed = 1;
|
||||
if (in_dga)
|
||||
if (in_dga->int_val)
|
||||
dga_on ();
|
||||
} else {
|
||||
XUngrabPointer (x_disp, CurrentTime);
|
||||
XUngrabKeyboard (x_disp, CurrentTime);
|
||||
input_grabbed = 0;
|
||||
if (in_dga)
|
||||
if (in_dga->int_val)
|
||||
dga_off ();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue