mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
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:
parent
42d0f08d18
commit
d87833f02a
2 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ static struct
|
|||
{ "'", 0x28 },
|
||||
{ "`", 0x29 },
|
||||
{ "LShift", 0x2a },
|
||||
{ "\\", 0x2b },
|
||||
{ "Backslash", 0x2b },
|
||||
{ "Z", 0x2c },
|
||||
{ "X", 0x2d },
|
||||
{ "C", 0x2e },
|
||||
|
|
|
@ -913,7 +913,7 @@ const keydef_t ConsoleKeys[]=
|
|||
{ "'", 0x28 },
|
||||
{ "Tilde", 0x29 },
|
||||
{ "LShift", 0x2a },
|
||||
{ "\\", 0x2b },
|
||||
{ "Backslash", 0x2b },
|
||||
{ "Z", 0x2c },
|
||||
{ "X", 0x2d },
|
||||
{ "C", 0x2e },
|
||||
|
|
Loading…
Reference in a new issue