Use "Backslash" instead of "\" for keybinds because its nature as an escape character causes issues. Fixes ticket #16.

git-svn-id: https://svn.eduke32.com/eduke32@5733 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-05-23 04:46:11 +00:00
parent 42d0f08d18
commit d87833f02a
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ static struct
{ "'", 0x28 },
{ "`", 0x29 },
{ "LShift", 0x2a },
{ "\\", 0x2b },
{ "Backslash", 0x2b },
{ "Z", 0x2c },
{ "X", 0x2d },
{ "C", 0x2e },

View File

@ -913,7 +913,7 @@ const keydef_t ConsoleKeys[]=
{ "'", 0x28 },
{ "Tilde", 0x29 },
{ "LShift", 0x2a },
{ "\\", 0x2b },
{ "Backslash", 0x2b },
{ "Z", 0x2c },
{ "X", 0x2d },
{ "C", 0x2e },