diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-11-22 19:44:48 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-11-22 19:44:48 -0500 |
commit | fde531e7c44ea917f745a9f800178fbe83fa19b5 (patch) | |
tree | 7b305c0bb27bf0fd30f9f0feeb7ae6dadbc8d1ae /source/gui.cpp | |
parent | c76ba69fc933a86e526855b097907a728e24568b (diff) |
more refactor; draw samples grid and cursor; gen load fixes
Diffstat (limited to 'source/gui.cpp')
-rw-r--r-- | source/gui.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/gui.cpp b/source/gui.cpp index 9720442..515d471 100644 --- a/source/gui.cpp +++ b/source/gui.cpp @@ -108,8 +108,10 @@ void guiRender(void (*func)()) SDL_GL_SwapWindow(window); } -void guiHandleEvents(bool& done) +bool guiHandleEvents() { + bool done = false; + for (SDL_Event event; SDL_PollEvent(&event);) { ImGui_ImplSDL2_ProcessEvent(&event); if (event.type == SDL_QUIT) @@ -117,6 +119,8 @@ void guiHandleEvents(bool& done) if (event.type == SDL_WINDOWEVENT && event.window.event == SDL_WINDOWEVENT_CLOSE && event.window.windowID == SDL_GetWindowID(window)) done = true; } + + return done; } void guiShutdown() |