소스 검색

Fixed comment style

Sam Lantinga 9 년 전
부모
커밋
cb8685c022
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/joystick/SDL_gamecontroller.c

+ 1 - 1
src/joystick/SDL_gamecontroller.c

@@ -1279,7 +1279,7 @@ SDL_GameControllerGetAxis(SDL_GameController * gamecontroller, SDL_GameControlle
             } else {
                 valid_output_range = (value >= binding->output.axis.axis_max && value <= binding->output.axis.axis_min);
             }
-            // If the value is zero, there might be another binding that makes it non-zero
+            /* If the value is zero, there might be another binding that makes it non-zero */
             if (value != 0 && valid_output_range) {
                 return (Sint16)value;
             }