summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2015-06-08 13:43:39 +1200
committerMatthew Parlane <parlane@gmail.com>2015-06-08 13:43:39 +1200
commit9e1aab663f2afdd61bda773764cc3c8f652659aa (patch)
tree1a7290487da53e934f0fe5096075f195b285a012 /Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
parent5c7caf1f22685430f98f39b86b07cadee3171f68 (diff)
Revert "SDL: handle SDL_QUIT event"
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
index 2c87e77f01..6b8b11fd3a 100644
--- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp
@@ -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();
}