diff options
author | muemart <muemart@users.noreply.github.com> | 2017-12-06 05:26:29 +0100 |
---|---|---|
committer | noah katz <n-katz@hotmail.com> | 2018-01-15 20:02:30 -0500 |
commit | eaff98dbb3da3c7524a504abb1cdd5daa3480dda (patch) | |
tree | 4e5d28ed590b01d001c065e6ac08f2df6daabf75 /src/input_common/main.cpp | |
parent | 1a3b3e91005725102bafbdac03836687d85dae73 (diff) |
Adding meumart's Citra SDL Joystick support. Citra PR #3116
Diffstat (limited to 'src/input_common/main.cpp')
-rw-r--r-- | src/input_common/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index 5573537408..95d40f09fe 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp @@ -71,4 +71,15 @@ std::string GenerateAnalogParamFromKeys(int key_up, int key_down, int key_left, return circle_pad_param.Serialize(); } +namespace Polling { + +std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type) { +#ifdef HAVE_SDL2 + return SDL::Polling::GetPollers(type); +#else + return {}; +#endif +} + +} // namespace Polling } // namespace InputCommon |