summaryrefslogtreecommitdiffstats
path: root/src/input_common/main.cpp
diff options
context:
space:
mode:
authorAmeer <aj662@drexel.edu>2020-07-02 22:51:16 +0200
committerAmeer <aj662@drexel.edu>2020-07-02 22:51:16 +0200
commit6e1639c7b004d13aba77549131ecee793fcc4065 (patch)
tree986eb64d29751cad2463e3e03f801e42b2089e05 /src/input_common/main.cpp
parentAdd LR triggers as axes, half press to initiate a press, add GC axis id in config, clarify some code blocks for better readability (diff)
downloadyuzu-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/main.cpp')
-rw-r--r--src/input_common/main.cpp2
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() {
#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;
}