Commit 4fc0fe1f6908b1a4d51990c3adf61968d94a738d

Sam Lantinga 2016-12-23T02:23:44

Removed debug print statements

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/joystick/darwin/SDL_sysjoystick.c b/src/joystick/darwin/SDL_sysjoystick.c
index 5b5e2bf..ca8028e 100644
--- a/src/joystick/darwin/SDL_sysjoystick.c
+++ b/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);