From bcbb06f092ff9a2c5441de91d60de1cc81e4d036 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 14 Apr 2020 00:29:52 +0100 Subject: [PATCH] Fix a leftover printf --- src/Backends/GLFW3/Controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Backends/GLFW3/Controller.cpp b/src/Backends/GLFW3/Controller.cpp index 0931e1c2..f1bc7be2 100644 --- a/src/Backends/GLFW3/Controller.cpp +++ b/src/Backends/GLFW3/Controller.cpp @@ -44,7 +44,7 @@ static void JoystickCallback(int joystick_id, int event) for (int i = 0; i < total_axes; ++i) axis_neutrals[i] = axes[i]; - printf("Joystick #%d selected\n", joystick_id); + Backend_PrintInfo("Joystick #%d selected\n", joystick_id); joystick_connected = true; connected_joystick_id = joystick_id; }