This commit is contained in:
offtkp 2022-03-25 02:19:46 +02:00
parent 79945c8c18
commit dc16104cfd

View File

@ -1196,6 +1196,7 @@ void run_gui(bool is_running)
current_selection = 0; current_selection = 0;
scroll = 0; scroll = 0;
do { do {
SDL_WaitEvent(&event);
/* Convert Joypad and mouse events (We only generate down events) */ /* Convert Joypad and mouse events (We only generate down events) */
if (gui_state != WAITING_FOR_KEY && gui_state != WAITING_FOR_JBUTTON) { if (gui_state != WAITING_FOR_KEY && gui_state != WAITING_FOR_JBUTTON) {
switch (event.type) { switch (event.type) {
@ -1650,5 +1651,5 @@ void run_gui(bool is_running)
render_texture(pixels, NULL); render_texture(pixels, NULL);
#endif #endif
} }
} while (SDL_WaitEvent(&event)); } while (true);
} }