Skip to content

Commit

Permalink
Fixed the XInput2 X11 symbols.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 18, 2013
1 parent 5a02600 commit b4a0014
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/x11/SDL_x11xinput2.c
Expand Up @@ -179,7 +179,7 @@ X11_InitXinput2Multitouch(_THIS)
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
XIDeviceInfo *info;
int ndevices,i,j;
info = XIQueryDevice(data->display, XIAllMasterDevices, &ndevices);
info = X11_XIQueryDevice(data->display, XIAllMasterDevices, &ndevices);

for (i = 0; i < ndevices; i++) {
XIDeviceInfo *dev = &info[i];
Expand All @@ -198,7 +198,7 @@ X11_InitXinput2Multitouch(_THIS)
}
}
}
XIFreeDeviceInfo(info);
X11_XIFreeDeviceInfo(info);
#endif
}

Expand Down

0 comments on commit b4a0014

Please sign in to comment.