mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-25 09:17:12 +01:00
iOS: Fixed keyboard demo ignoring quit requests and window closing.
This also fixed a warning about an unused variable.
This commit is contained in:
parent
e9ca5b28a6
commit
bd60850b82
@ -253,7 +253,7 @@ main(int argc, char *argv[])
|
|||||||
|
|
||||||
int done = 0;
|
int done = 0;
|
||||||
/* loop till we get SDL_Quit */
|
/* loop till we get SDL_Quit */
|
||||||
while (SDL_WaitEvent(&event)) {
|
while (!done && SDL_WaitEvent(&event)) {
|
||||||
switch (event.type) {
|
switch (event.type) {
|
||||||
case SDL_QUIT:
|
case SDL_QUIT:
|
||||||
done = 1;
|
done = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user