Browse Source

Android: Deactivated debug log messages on joystick device events.

Philipp Wiesemann 10 years ago
parent
commit
9979bab20b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/joystick/android/SDL_sysjoystick.c

+ 4 - 0
src/joystick/android/SDL_sysjoystick.c

@@ -311,7 +311,9 @@ Android_AddJoystick(int device_id, const char *name, SDL_bool is_accelerometer,
     }
 #endif /* !SDL_EVENTS_DISABLED */
 
+#ifdef DEBUG_JOYSTICK
     SDL_Log("Added joystick %s with device_id %d", name, device_id);
+#endif
 
     return numjoysticks;
 }
@@ -368,7 +370,9 @@ Android_RemoveJoystick(int device_id)
     }
 #endif /* !SDL_EVENTS_DISABLED */
 
+#ifdef DEBUG_JOYSTICK
     SDL_Log("Removed joystick with device_id %d", device_id);
+#endif
     
     SDL_free(item->name);
     SDL_free(item);