Fix a typo in a previous SDL2 related commit.

The error avoided the code to be compiled, somehow got lost between all
the other compilation errors still around.
This commit is contained in:
Mark de Wever 2014-03-02 13:45:37 +01:00
parent d64e5fb98e
commit e2e029b6e0

View File

@ -604,7 +604,7 @@ void hotkey_preferences_dialog::show_binding_dialog(
case SDL_KEYDOWN:
keycode = event.key.keysym.sym;
#if SDL_VERSION_ATLEAST(2, 0, 0)
character = event.keysym.scancode,
character = event.key.keysym.scancode,
#else
character = event.key.keysym.unicode;
#endif