Przeglądaj źródła
GetCurrentMonitor() bugfix (#3058)
* GetCurrentMonitor() bugfix
* GetCurrentMonitor() bugfix
pull/3066/head
hamyy
1 rok temu
committed by
GitHub
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z
1 dodań i
1 usunięć
-
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; |
|
|
|