Make sure CORE.Window.ready is set

This commit is contained in:
Ray
2023-10-14 12:55:31 +02:00
parent b34c2ecbcb
commit 54950f9a3d
3 changed files with 6 additions and 0 deletions

View File

@@ -1657,6 +1657,8 @@ static int InitPlatform(void)
rlLoadExtensions(glfwGetProcAddress);
if ((CORE.Window.flags & FLAG_WINDOW_MINIMIZED) > 0) MinimizeWindow();
CORE.Window.ready = true; // TODO: Proper validation on windows/context creation
// If graphic device is no properly initialized, we end program
if (!CORE.Window.ready) { TRACELOG(LOG_FATAL, "PLATFORM: Failed to initialize graphic device"); return -1; }