maybe this shit will finally work. also update the README.

This commit is contained in:
StapleButter
2017-03-29 22:56:30 +02:00
parent 9baeb3bd1a
commit 99e4ad409f
2 changed files with 9 additions and 21 deletions

View File

@ -299,7 +299,7 @@ SDL_Scancode scancode_wx2sdl(wxKeyEvent& event)
int keysym = event.GetRawKeyCode();
if (keysym == NoSymbol)
if (keysym == 0)
{
return SDL_SCANCODE_UNKNOWN;
}
@ -322,7 +322,7 @@ SDL_Scancode scancode_wx2sdl(wxKeyEvent& event)
return (SDL_Scancode)(SDL_SCANCODE_1 + (keysym - GDK_1));
}
for (i = 0; i < SDL_arraysize(KeySymToSDLScancode); ++i)
for (int i = 0; i < SDL_arraysize(KeySymToSDLScancode); ++i)
{
if (keysym == KeySymToSDLScancode[i].keysym)
{