Browse Source

Remove unused variable

raysan5 4 năm trước cách đây
mục cha
commit
aa38532cc3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/core.c

+ 1 - 1
src/core.c

@@ -1475,7 +1475,7 @@ Vector2 GetMonitorPosition(int monitor)
     {
         int x, y;
         glfwGetMonitorPos(monitors[monitor], &x, &y);
-        const GLFWvidmode* mode = glfwGetVideoMode(monitors[monitor]);
+        
         return (Vector2){ (float)x, (float)y };
     }
     else TRACELOG(LOG_WARNING, "GLFW: Failed to find selected monitor");