diff options
| author | 2017-12-06 05:26:29 +0100 | |
|---|---|---|
| committer | 2018-01-15 20:02:30 -0500 | |
| commit | eaff98dbb3da3c7524a504abb1cdd5daa3480dda (patch) | |
| tree | 4e5d28ed590b01d001c065e6ac08f2df6daabf75 /src/input_common/main.cpp | |
| parent | pctl: Clang format. (diff) | |
| download | yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.gz yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.tar.xz yuzu-eaff98dbb3da3c7524a504abb1cdd5daa3480dda.zip | |
Adding meumart's Citra SDL Joystick support. Citra PR #3116
Diffstat (limited to '')
| -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 557353740..95d40f09f 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, | |||
| 71 | return circle_pad_param.Serialize(); | 71 | return circle_pad_param.Serialize(); |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | namespace Polling { | ||
| 75 | |||
| 76 | std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type) { | ||
| 77 | #ifdef HAVE_SDL2 | ||
| 78 | return SDL::Polling::GetPollers(type); | ||
| 79 | #else | ||
| 80 | return {}; | ||
| 81 | #endif | ||
| 82 | } | ||
| 83 | |||
| 84 | } // namespace Polling | ||
| 74 | } // namespace InputCommon | 85 | } // namespace InputCommon |