Fix SDL quit key combination

This commit is contained in:
Iwan Timmer 2015-08-09 22:04:15 +02:00
parent 503a8982d8
commit 92112f292a

View File

@ -37,7 +37,7 @@ void sdl_loop() {
while(!done && SDL_WaitEvent(&event)) {
if (!sdlinput_handle_event(&event))
done = false;
done = true;
else if (event.type == SDL_QUIT)
done = true;
}