don't report joysticks on stderr

This commit is contained in:
Brad Grantham 2021-01-11 20:25:39 -08:00
parent e55025e615
commit d3770cfc71
1 changed files with 3 additions and 3 deletions

View File

@ -1965,9 +1965,9 @@ void iterate(const ModeHistory& history, unsigned long long current_byte, float
glfwSwapBuffers(my_window);
CheckOpenGL(__FILE__, __LINE__);
for(int i = 0; i < 16; i++)
if(glfwJoystickPresent(GLFW_JOYSTICK_1 + i))
printf("joy %d present\n", i);
// for(int i = 0; i < 16; i++)
// if(glfwJoystickPresent(GLFW_JOYSTICK_1 + i))
// printf("joy %d present\n", i);
if(glfwJoystickPresent(GLFW_JOYSTICK_1)) {
if(false) printf("joystick 1 present\n");