Fix imgui support + update README.md

This commit is contained in:
CocoSimone
2022-08-19 23:42:15 +02:00
parent 02636d38b6
commit 7962ae12e3
31 changed files with 53895 additions and 29 deletions

View File

@@ -9,7 +9,7 @@ void App::Run() {
while (!done) {
SDL_Event event;
while (SDL_PollEvent(&event)) {
//ImGui_ImplSDL2_ProcessEvent(&event);
ImGui_ImplSDL2_ProcessEvent(&event);
switch(event.type) {
case SDL_QUIT: done = true; break;
case SDL_WINDOWEVENT: