소스 검색

Fixed warning about implicit conversion in controllermap program.

Philipp Wiesemann 8 년 전
부모
커밋
20c846ebe7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/controllermap.c

+ 1 - 1
test/controllermap.c

@@ -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;