mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 06:18:32 +00:00
SDL: handle SDL_QUIT event
Using SDL_INIT_JOYSTICK implies SDL_INIT_EVENTS which installs a signal handler for SIGINT and SIGTERM. There will be a way to prevent this in 2.0.4 but for now we'll need to handle SDL_QUIT.
This commit is contained in:
parent
2f2e514b54
commit
9ec5a4544f
6 changed files with 26 additions and 9 deletions
|
@ -134,6 +134,11 @@ 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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue