mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-23 10:55:36 +00:00
Fix SDLK_ESCAPE
This commit is contained in:
parent
647e1b5efd
commit
4c9d372611
|
@ -3013,7 +3013,7 @@ namespace SDL2
|
|||
SDLK_UNKNOWN = 0,
|
||||
|
||||
SDLK_RETURN = '\r',
|
||||
SDLK_ESCAPE = 033,
|
||||
SDLK_ESCAPE = 27, // '\033'
|
||||
SDLK_BACKSPACE = '\b',
|
||||
SDLK_TAB = '\t',
|
||||
SDLK_SPACE = ' ',
|
||||
|
|
Loading…
Reference in a new issue