summaryrefslogtreecommitdiffstats
path: root/platform/ios/joypad_ios.mm
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/joypad_ios.mm')
-rw-r--r--platform/ios/joypad_ios.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/ios/joypad_ios.mm b/platform/ios/joypad_ios.mm
index 9194b09ef6..421c82dfc4 100644
--- a/platform/ios/joypad_ios.mm
+++ b/platform/ios/joypad_ios.mm
@@ -150,7 +150,7 @@ void JoypadIOS::start_processing() {
int joy_id = Input::get_singleton()->get_unused_joy_id();
if (joy_id == -1) {
- printf("Couldn't retrieve new joy id\n");
+ print_verbose("Couldn't retrieve new joy ID.");
return;
}
@@ -174,12 +174,12 @@ void JoypadIOS::start_processing() {
GCController *controller = (GCController *)notification.object;
if (!controller) {
- printf("Couldn't retrieve new controller\n");
+ print_verbose("Couldn't retrieve new controller.");
return;
}
if ([[self.connectedJoypads allKeysForObject:controller] count] > 0) {
- printf("Controller is already registered\n");
+ print_verbose("Controller is already registered.");
} else if (!self.isProcessing) {
[self.joypadsQueue addObject:controller];
} else {