mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-18 17:28:15 +00:00
Remove unused variable
This commit is contained in:
@@ -1475,7 +1475,7 @@ Vector2 GetMonitorPosition(int monitor)
|
|||||||
{
|
{
|
||||||
int x, y;
|
int x, y;
|
||||||
glfwGetMonitorPos(monitors[monitor], &x, &y);
|
glfwGetMonitorPos(monitors[monitor], &x, &y);
|
||||||
const GLFWvidmode* mode = glfwGetVideoMode(monitors[monitor]);
|
|
||||||
return (Vector2){ (float)x, (float)y };
|
return (Vector2){ (float)x, (float)y };
|
||||||
}
|
}
|
||||||
else TRACELOG(LOG_WARNING, "GLFW: Failed to find selected monitor");
|
else TRACELOG(LOG_WARNING, "GLFW: Failed to find selected monitor");
|
||||||
|
Reference in New Issue
Block a user