Skip to content

Commit e54a2d8

Browse files
committed
typo in KEY enum
1 parent 90fdc36 commit e54a2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sdl/main_sdl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static int translate_sdlkey(SDLKey sym)
106106
case SDLK_RIGHT: return KEY_RIGHT;
107107
case SDLK_UP: return KEY_UP;
108108
case SDLK_DOWN: return KEY_DOWN;
109-
case SDLK_INSERT: return KEY_INSERT;
109+
case SDLK_INSERT: return KEY_INS;
110110
case SDLK_HOME: return KEY_HOME;
111111
case SDLK_END: return KEY_END;
112112
case SDLK_PAGEUP: return KEY_PGUP;

0 commit comments

Comments
 (0)