hamyy
1 anno fa
committed by
GitHub
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con
1 aggiunte e
1 eliminazioni
-
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; |
|
|
|