فهرست منبع

Removed debug print statements

Sam Lantinga 8 سال پیش
والد
کامیت
4fc0fe1f69
1فایلهای تغییر یافته به همراه0 افزوده شده و 2 حذف شده
  1. 0 2
      src/joystick/darwin/SDL_sysjoystick.c

+ 0 - 2
src/joystick/darwin/SDL_sysjoystick.c

@@ -134,7 +134,6 @@ GetHIDScaledCalibratedState(recDevice * pDevice, recElement * pElement, SInt32 m
     const float deviceScale = max - min;
     const float readScale = pElement->maxReport - pElement->minReport;
     const SInt32 value = GetHIDElementState(pDevice, pElement);
-printf("MIN/MAX = %d/%d, value = %d\n", pElement->minReport, pElement->maxReport, value);
     if (readScale == 0) {
         return value;           /* no scaling at all */
     }
@@ -692,7 +691,6 @@ SDL_SYS_JoystickUpdate(SDL_Joystick * joystick)
     element = device->firstAxis;
     i = 0;
     while (element) {
-printf("Getting axis %d ", i);
         value = GetHIDScaledCalibratedState(device, element, -32768, 32767);
         if (value != joystick->axes[i].value) {
             SDL_PrivateJoystickAxis(joystick, i, value);