mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
assigning > 255 into an unsigned char isn't too good
This commit is contained in:
parent
aa7500cac7
commit
9f09a6aa32
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ static int UseKeyboard = 1;
|
|||
static int UseMouse = 1;
|
||||
static int in_svgalib_inited = 0;
|
||||
|
||||
static unsigned char scantokey[128];
|
||||
static unsigned short scantokey[128];
|
||||
static int mouse_buttons;
|
||||
static int mouse_buttonstate;
|
||||
static int mouse_oldbuttonstate;
|
||||
|
|
Loading…
Reference in a new issue