Browse Source

Remove unused variable

pull/1468/head
raysan5 4 years ago
parent
commit
aa38532cc3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/core.c

+ 1
- 1
src/core.c 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");

Loading…
Cancel
Save