* GetCurrentMonitor() bugfix * GetCurrentMonitor() bugfix
@@ -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;