diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-01 00:14:50 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-01 00:14:50 -0800 |
commit | 8bc00ee3f7cf910d8e3a1f473e5c582597b12dd6 (patch) | |
tree | c831b2fed20fed33dab2d806a04e8f5caf047585 | |
parent | b8aed7e38c43ebc2707f3467cbecdb6b076ffd3d (diff) |
Fix scancode for F key
-rwxr-xr-x | render_sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render_sdl.c b/render_sdl.c index ae6ef4c..f29c76e 100755 --- a/render_sdl.c +++ b/render_sdl.c @@ -749,7 +749,7 @@ static uint8_t scancode_map[SDL_NUM_SCANCODES] = { [SDL_SCANCODE_C] = 0x21, [SDL_SCANCODE_D] = 0x23, [SDL_SCANCODE_E] = 0x24, - [SDL_SCANCODE_F] = 0x28, + [SDL_SCANCODE_F] = 0x2B, [SDL_SCANCODE_G] = 0x34, [SDL_SCANCODE_H] = 0x33, [SDL_SCANCODE_I] = 0x43, |