summaryrefslogtreecommitdiff
path: root/src/doomkeys.h
diff options
context:
space:
mode:
authorSimon Howard2011-10-22 17:23:25 +0000
committerSimon Howard2011-10-22 17:23:25 +0000
commitcfd1a3f8f739b049af04b9e637db9a51758cef27 (patch)
tree4235481747909a278aa8b6f3b4e10341a511f009 /src/doomkeys.h
parent4a356b565d08ee48dbe8d920876fd73a72dbc016 (diff)
downloadchocolate-doom-cfd1a3f8f739b049af04b9e637db9a51758cef27.tar.gz
chocolate-doom-cfd1a3f8f739b049af04b9e637db9a51758cef27.tar.bz2
chocolate-doom-cfd1a3f8f739b049af04b9e637db9a51758cef27.zip
Change KEY_BACKSPACE to 0x7f to fix problems with the backspace key not
working in multiplayer chat. This matches the definition for the value from the Doom source release. Subversion-branch: /branches/v2-branch Subversion-revision: 2456
Diffstat (limited to 'src/doomkeys.h')
-rw-r--r--src/doomkeys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doomkeys.h b/src/doomkeys.h
index 3db17a6d..4fd074e3 100644
--- a/src/doomkeys.h
+++ b/src/doomkeys.h
@@ -52,7 +52,7 @@
#define KEY_F11 (0x80+0x57)
#define KEY_F12 (0x80+0x58)
-#define KEY_BACKSPACE '\b'
+#define KEY_BACKSPACE 0x7f
#define KEY_PAUSE 0xff
#define KEY_EQUALS 0x3d