mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 06:18:30 -05:00
Address feedback
This commit is contained in:
@ -89,10 +89,9 @@ State::~State() {
|
||||
Input::UnregisterFactory<Input::MotionDevice>("cemuhookudp");
|
||||
}
|
||||
|
||||
std::vector<Common::ParamPackage> State::GetInputDevices() {
|
||||
std::vector<Common::ParamPackage> devices = {};
|
||||
std::vector<Common::ParamPackage> State::GetInputDevices() const {
|
||||
// TODO support binding udp devices
|
||||
return devices;
|
||||
return {};
|
||||
}
|
||||
|
||||
void State::ReloadUDPClient() {
|
||||
|
@ -19,7 +19,7 @@ public:
|
||||
State();
|
||||
~State();
|
||||
void ReloadUDPClient();
|
||||
std::vector<Common::ParamPackage> GetInputDevices();
|
||||
std::vector<Common::ParamPackage> GetInputDevices() const;
|
||||
|
||||
private:
|
||||
std::unique_ptr<Client> client;
|
||||
|
Reference in New Issue
Block a user