Răsfoiți Sursa

Merge branch 'master' into joystickname

Camilla Berglund 12 ani în urmă
părinte
comite
42c78fbe42
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      tests/joysticks.c

+ 3 - 3
tests/joysticks.c

@@ -95,11 +95,11 @@ static void draw_joystick(Joystick* j, int x, int y, int width, int height)
     }
 }
 
-static void draw_joysticks(void)
+static void draw_joysticks(GLFWwindow window)
 {
     int i, width, height;
 
-    glfwGetWindowSize(glfwGetCurrentContext(), &width, &height);
+    glfwGetWindowSize(window, &width, &height);
 
     glMatrixMode(GL_PROJECTION);
     glLoadIdentity();
@@ -210,7 +210,7 @@ int main(void)
         glClear(GL_COLOR_BUFFER_BIT);
 
         refresh_joysticks();
-        draw_joysticks();
+        draw_joysticks(window);
 
         glfwSwapBuffers(window);
         glfwPollEvents();