Minor coding convention fix.

Ryan C. Gordon 2015-08-14 23:30:46 -04:00
parent fb37956d9b
commit 0cf81fbdf9
1 changed files with 2 additions and 1 deletions

View File

@ -307,8 +307,9 @@ X11_UpdateKeymap(_THIS)
#if SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM
XkbStateRec state;
if(0 == X11_XkbGetState(data->display, XkbUseCoreKbd, &state))
if (X11_XkbGetState(data->display, XkbUseCoreKbd, &state == Success)) {
group = state.group;
}
#endif