Преглед изворни кода

lookup the returned monitor in the list of monitors to get an index. (#1490)

pull/1492/head
Jeffery Myers пре 4 година
committed by GitHub
родитељ
комит
24b6dcf29f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 10 додато и 1 уклоњено
  1. +10
    -1
      src/core.c

+ 10
- 1
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

Loading…
Откажи
Сачувај