diff options
| author | 2020-08-15 15:26:29 -0400 | |
|---|---|---|
| committer | 2020-08-26 02:32:32 -0400 | |
| commit | efa0b7a056b73dffb8789c95ebf8a9c09e55f539 (patch) | |
| tree | 52d74b2708105c14c086cddafed83b6f4eb98f7c /src/input_common/udp/udp.cpp | |
| parent | qt_themes: Fix Midnight Blue theme (diff) | |
| download | yuzu-efa0b7a056b73dffb8789c95ebf8a9c09e55f539.tar.gz yuzu-efa0b7a056b73dffb8789c95ebf8a9c09e55f539.tar.xz yuzu-efa0b7a056b73dffb8789c95ebf8a9c09e55f539.zip | |
Address feedback
Diffstat (limited to 'src/input_common/udp/udp.cpp')
| -rw-r--r-- | src/input_common/udp/udp.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/input_common/udp/udp.cpp b/src/input_common/udp/udp.cpp index 60cf47123..4b347e47e 100644 --- a/src/input_common/udp/udp.cpp +++ b/src/input_common/udp/udp.cpp | |||
| @@ -89,10 +89,9 @@ State::~State() { | |||
| 89 | Input::UnregisterFactory<Input::MotionDevice>("cemuhookudp"); | 89 | Input::UnregisterFactory<Input::MotionDevice>("cemuhookudp"); |
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | std::vector<Common::ParamPackage> State::GetInputDevices() { | 92 | std::vector<Common::ParamPackage> State::GetInputDevices() const { |
| 93 | std::vector<Common::ParamPackage> devices = {}; | ||
| 94 | // TODO support binding udp devices | 93 | // TODO support binding udp devices |
| 95 | return devices; | 94 | return {}; |
| 96 | } | 95 | } |
| 97 | 96 | ||
| 98 | void State::ReloadUDPClient() { | 97 | void State::ReloadUDPClient() { |