diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index dde7088a3..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "workbench.colorTheme": "Abyss" -} \ No newline at end of file diff --git a/src/rcore.c b/src/rcore.c index b4128585e..881739c73 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -1785,7 +1785,7 @@ int GetCurrentMonitor(void) monitor = monitors[i]; glfwGetMonitorWorkarea(monitor, &mx, &my, &width, &height); - if (x >= mx && x <= (mx + width) && y > my && y < (my + height)) + if (x >= mx && x < (mx + width) && y >= my && y < (my + height)) { index = i; break;