mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
gcc 3.0 related fixes
This commit is contained in:
parent
4ca1499c51
commit
f840a44981
1 changed files with 7 additions and 0 deletions
|
@ -35,6 +35,12 @@
|
|||
#ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRING_H
|
||||
# include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -106,6 +112,7 @@ keyhandler (int scancode, int state)
|
|||
shifts |= ROTL(press, 3);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
Key_Event (key, ascii, press);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue