Quit the game if a SDL_QUIT event is received.

This commit is contained in:
Yamagi Burmeister 2016-07-18 10:11:54 +02:00
parent 7cb455459a
commit f291693c59

View file

@ -436,6 +436,11 @@ IN_Update(void)
}
#endif
break;
case SDL_QUIT:
Com_Quit();
break;
}
}