浏览代码

Fixed type errors in modes test.

Camilla Berglund 13 年之前
父节点
当前提交
88fd170e64
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      tests/modes.c

+ 2 - 3
tests/modes.c

@@ -92,7 +92,7 @@ static void key_callback(GLFWwindow dummy, int key, int action)
 
 static void list_modes(void)
 {
-    size_t count, i;
+    int count, i;
     GLFWvidmode desktop_mode;
     GLFWvidmode* modes = glfwGetVideoModes(&count);
 
@@ -114,8 +114,7 @@ static void list_modes(void)
 
 static void test_modes(void)
 {
-    int width, height;
-    size_t i, count;
+    int i, count, width, height;
     GLFWvidmode* modes = glfwGetVideoModes(&count);
 
     glfwSetWindowSizeCallback(window_size_callback);