Browse Source

Security check in case window initialization fails

pull/458/head
raysan5 6 years ago
parent
commit
c32ed921a2
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      src/core.c

+ 9
- 4
src/core.c View File

@ -633,14 +633,19 @@ bool IsWindowReady(void)
bool WindowShouldClose(void)
{
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)
// While window minimized, stop loop execution
while (windowMinimized) glfwWaitEvents();
if (windowReady)
{
// While window minimized, stop loop execution
while (windowMinimized) glfwWaitEvents();
return (glfwWindowShouldClose(window));
return (glfwWindowShouldClose(window));
}
else return true;
#endif
#if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_UWP)
return windowShouldClose;
if (windowReady) return windowShouldClose;
else return true;
#endif
}

Loading…
Cancel
Save