*** empty log message ***

This commit is contained in:
Sam Lantinga
2006-02-19 23:38:57 +00:00
parent 8cca5f73c6
commit b56a6d0212

View File

@@ -117,7 +117,7 @@ static void updateKeyboard(_THIS)
if ((n = read(private->fd, buf, sizeof(buf))) > 0) {
for (i = 0; i < n; i++) {
char c = buf[i] & 0x7f;
unsigned char c = buf[i] & 0x7f;
if (c == 224) // special key prefix -- what should we do with it?
continue;
int release = (buf[i] & 0x80) != 0;