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

Windows never differentiates between a backspace keypress and the backspace

char. (afaik)
parent 3f1a2139
Branches
Tags
No related merge requests found
......@@ -10,5 +10,7 @@
#define KEY_PPAGE 0x49 << 8
#define KEY_NPAGE 0x51 << 8
/* #define KEY_BACKSPACE '\b' << 8 This is most likely wrong */
#define KEY_BACKSPACE 0xff << 8 /* Just a placeholder for now */
#define KEY_BACKSPACE 0xff01 /* Windows never differentiates between a
* backspace keypress and the backspace
* char
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment