Remove unused variable

This commit is contained in:
raysan5
2020-12-23 13:03:13 +01:00
parent 9216e96315
commit aa38532cc3

View File

@@ -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");