# HG changeset patch # User Michael Pavone # Date 1488356090 28800 # Node ID 1148567ab355b12b815de542d6bb68b1547791bf # Parent db28178bd2a1218a7cc30a58b22a61515b566084 Fix scancode for F key diff -r db28178bd2a1 -r 1148567ab355 render_sdl.c --- a/render_sdl.c Wed Mar 01 00:08:18 2017 -0800 +++ b/render_sdl.c Wed Mar 01 00:14:50 2017 -0800 @@ -749,7 +749,7 @@ [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,