Android: Deactivated debug log messages on joystick device events.

This commit is contained in:
Philipp Wiesemann 2015-04-30 21:45:29 +02:00
parent e1eebca097
commit 8dcfd98d27

View file

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