diff options
| author | 2020-07-02 16:51:16 -0400 | |
|---|---|---|
| committer | 2020-07-02 16:51:16 -0400 | |
| commit | 6e1639c7b004d13aba77549131ecee793fcc4065 (patch) | |
| tree | 986eb64d29751cad2463e3e03f801e42b2089e05 /src/input_common/main.cpp | |
| parent | Add LR triggers as axes, half press to initiate a press, add GC axis id in co... (diff) | |
| download | yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.gz yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.xz yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.zip | |
Fix unnecessary diffs
Diffstat (limited to 'src/input_common/main.cpp')
| -rw-r--r-- | src/input_common/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index f13420b38..fd0af1019 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp | |||
| @@ -45,6 +45,7 @@ void Init() { | |||
| 45 | #ifdef HAVE_SDL2 | 45 | #ifdef HAVE_SDL2 |
| 46 | sdl = SDL::Init(); | 46 | sdl = SDL::Init(); |
| 47 | #endif | 47 | #endif |
| 48 | |||
| 48 | udp = CemuhookUDP::Init(); | 49 | udp = CemuhookUDP::Init(); |
| 49 | } | 50 | } |
| 50 | 51 | ||
| @@ -111,6 +112,7 @@ std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type) { | |||
| 111 | #ifdef HAVE_SDL2 | 112 | #ifdef HAVE_SDL2 |
| 112 | pollers = sdl->GetPollers(type); | 113 | pollers = sdl->GetPollers(type); |
| 113 | #endif | 114 | #endif |
| 115 | |||
| 114 | return pollers; | 116 | return pollers; |
| 115 | } | 117 | } |
| 116 | 118 | ||