mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix a silly pointed out by sixk@ifrance.com
This commit is contained in:
parent
f78d6cbf83
commit
6917d2c1a3
1 changed files with 1 additions and 1 deletions
|
@ -808,7 +808,7 @@ IN_LL_SendKeyEvents (void)
|
||||||
}
|
}
|
||||||
if (unicode > 255)
|
if (unicode > 255)
|
||||||
unicode = 0;
|
unicode = 0;
|
||||||
Key_Event (sym, unicode, state);
|
Key_Event (ksym, unicode, state);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_MOUSEBUTTONDOWN:
|
case SDL_MOUSEBUTTONDOWN:
|
||||||
|
|
Loading…
Reference in a new issue