Fixed warning about implicit conversion in controllermap program.

This commit is contained in:
Philipp Wiesemann 2017-03-04 23:05:47 +01:00
parent 72fdf62980
commit 20c846ebe7

View file

@ -409,7 +409,7 @@ WatchJoystick(SDL_Joystick * joystick)
nJoystickID = SDL_JoystickInstanceID(joystick);
s_nNumAxes = SDL_JoystickNumAxes(joystick);
s_arrAxisState = SDL_calloc(s_nNumAxes, sizeof(*s_arrAxisState));
s_arrAxisState = (AxisState *)SDL_calloc(s_nNumAxes, sizeof(*s_arrAxisState));
for (iIndex = 0; iIndex < s_nNumAxes; ++iIndex) {
AxisState *pAxisState = &s_arrAxisState[iIndex];
Sint16 nInitialValue;