]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - keys.c
eliminated qbyte type, now uses unsigned char throughout the engine for this purpose
[xonotic/darkplaces.git] / keys.c
diff --git a/keys.c b/keys.c
index 7a218b58039d0cb1f3deb7d4da0ed3d99e6dd7c5..3df1d01e5873c0a15510d2b06039d654f0d6b328 100644 (file)
--- a/keys.c
+++ b/keys.c
@@ -37,7 +37,7 @@ int                   key_consoleactive;
 char           *keybindings[MAX_BINDMAPS][MAX_KEYS];
 
 static int     key_bmap, key_bmap2;
-static qbyte keydown[MAX_KEYS];        // 0 = up, 1 = down, 2 = repeating
+static unsigned char keydown[MAX_KEYS];        // 0 = up, 1 = down, 2 = repeating
 
 typedef struct keyname_s
 {