Skip to content
Snippets Groups Projects
Commit a966944a authored by deuce's avatar deuce
Browse files

Fix bug in last that would cause things such as shift/alt/ctrl presses

to be stuffed into the input buffer as NULLs.
parent 02ac3c22
Branches
Tags
No related merge requests found
......@@ -1602,6 +1602,8 @@ unsigned int sdl_get_char_code(unsigned int keysym, unsigned int mod, unsigned i
}
}
}
return(0x0001ffff);
}
if(unicode <= 0x7f)
return(unicode);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment