Procházet zdrojové kódy

Remove unused variable

pull/1468/head
raysan5 před 5 roky
rodič
revize
aa38532cc3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/core.c

+ 1
- 1
src/core.c Zobrazit soubor

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

Načítá se…
Zrušit
Uložit