mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-06-17 22:32:43 +00:00
Fix SDL quit key combination
This commit is contained in:
@@ -37,7 +37,7 @@ void sdl_loop() {
|
|||||||
|
|
||||||
while(!done && SDL_WaitEvent(&event)) {
|
while(!done && SDL_WaitEvent(&event)) {
|
||||||
if (!sdlinput_handle_event(&event))
|
if (!sdlinput_handle_event(&event))
|
||||||
done = false;
|
done = true;
|
||||||
else if (event.type == SDL_QUIT)
|
else if (event.type == SDL_QUIT)
|
||||||
done = true;
|
done = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user