diff options
author | Ameer <aj662@drexel.edu> | 2020-07-02 22:51:16 +0200 |
---|---|---|
committer | Ameer <aj662@drexel.edu> | 2020-07-02 22:51:16 +0200 |
commit | 6e1639c7b004d13aba77549131ecee793fcc4065 (patch) | |
tree | 986eb64d29751cad2463e3e03f801e42b2089e05 /src/input_common | |
parent | Add LR triggers as axes, half press to initiate a press, add GC axis id in config, clarify some code blocks for better readability (diff) | |
download | yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.gz yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.bz2 yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.lz yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.xz yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.tar.zst yuzu-6e1639c7b004d13aba77549131ecee793fcc4065.zip |
Diffstat (limited to 'src/input_common')
-rw-r--r-- | src/input_common/keyboard.cpp | 3 | ||||
-rw-r--r-- | src/input_common/main.cpp | 2 | ||||
-rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/input_common/keyboard.cpp b/src/input_common/keyboard.cpp index eb6c3112b..afb8e6612 100644 --- a/src/input_common/keyboard.cpp +++ b/src/input_common/keyboard.cpp @@ -49,9 +49,8 @@ public: void ChangeKeyStatus(int key_code, bool pressed) { std::lock_guard guard{mutex}; for (const KeyButtonPair& pair : list) { - if (pair.key_code == key_code) { + if (pair.key_code == key_code) pair.key_button->status.store(pressed); - } } } 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() { #ifdef HAVE_SDL2 sdl = SDL::Init(); #endif + udp = CemuhookUDP::Init(); } @@ -111,6 +112,7 @@ std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type) { #ifdef HAVE_SDL2 pollers = sdl->GetPollers(type); #endif + return pollers; } diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index 6b264f2a6..675b477fa 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -444,7 +444,6 @@ private: class SDLAnalogFactory final : public Input::Factory<Input::AnalogDevice> { public: explicit SDLAnalogFactory(SDLState& state_) : state(state_) {} - /** * Creates analog device from joystick axes * @param params contains parameters for creating the device: |