respect should_exit on linux as well #13

Merged
Ammerhai merged 1 commits from should_exit into main 2025-12-06 19:02:43 +01:00

View File

@ -452,7 +452,7 @@ int main(int, char**)
init();
// Main loop
while (!glfwWindowShouldClose(window))
while (!glfwWindowShouldClose(window) && !should_exit)
{
// Poll and handle events (inputs, window resize, etc.)
// You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs.