Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 19, 2006
1 parent f117d26 commit 1d6c1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/wscons/SDL_wsconsevents.c
Expand Up @@ -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;
Expand Down

0 comments on commit 1d6c1b8

Please sign in to comment.