mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-18 17:28:15 +00:00
lookup the returned monitor in the list of monitors to get an index. (#1490)
This commit is contained in:
11
src/core.c
11
src/core.c
@@ -1456,7 +1456,16 @@ int GetMonitorCount(void)
|
||||
int GetCurrentMonitor(void)
|
||||
{
|
||||
#if defined(PLATFORM_DESKTOP)
|
||||
return glfwGetWindowMonitor(CORE.Window.handle);
|
||||
int monitorCount;
|
||||
GLFWmonitor** monitors = glfwGetMonitors(&monitorCount);
|
||||
|
||||
GLFWmonitor* monitor = glfwGetWindowMonitor(CORE.Window.handle);
|
||||
for (int i = 0; i < monitorCount; i++)
|
||||
{
|
||||
if (monitors[i] == monitor)
|
||||
return i;
|
||||
}
|
||||
return 0;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user