소스 검색

Remove unused variable

raysan5 4 년 전
부모
커밋
aa38532cc3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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");