mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-09 13:55:32 +00:00
Fix SDLK_DELETE value: 0177 (octal), 127 (decimal)
This commit is contained in:
parent
6ca6862d7e
commit
62a28724f2
|
@ -4132,7 +4132,7 @@ namespace SDL2
|
|||
SDLK_INSERT = (int)SDL_Scancode.SDL_SCANCODE_INSERT | SDLK_SCANCODE_MASK,
|
||||
SDLK_HOME = (int)SDL_Scancode.SDL_SCANCODE_HOME | SDLK_SCANCODE_MASK,
|
||||
SDLK_PAGEUP = (int)SDL_Scancode.SDL_SCANCODE_PAGEUP | SDLK_SCANCODE_MASK,
|
||||
SDLK_DELETE = 177,
|
||||
SDLK_DELETE = 127,
|
||||
SDLK_END = (int)SDL_Scancode.SDL_SCANCODE_END | SDLK_SCANCODE_MASK,
|
||||
SDLK_PAGEDOWN = (int)SDL_Scancode.SDL_SCANCODE_PAGEDOWN | SDLK_SCANCODE_MASK,
|
||||
SDLK_RIGHT = (int)SDL_Scancode.SDL_SCANCODE_RIGHT | SDLK_SCANCODE_MASK,
|
||||
|
|
Loading…
Reference in a new issue