Revert "SDL: handle SDL_QUIT event"

This commit is contained in:
Matthew Parlane
2015-06-08 13:43:39 +12:00
parent 5c7caf1f22
commit 9e1aab663f
6 changed files with 9 additions and 26 deletions

View File

@ -134,11 +134,6 @@ void ControllerInterface::Shutdown()
//
void ControllerInterface::UpdateInput()
{
#ifdef CIFACE_USE_SDL
// SDL currently also handles SIGINT and SIGTERM,
// so make sure to update it even if there is no SDL device.
ciface::SDL::UpdateInput();
#endif
for (ciface::Core::Device* d : m_devices)
d->UpdateInput();
}