Address feedback

This commit is contained in:
Morph 2020-08-15 15:26:29 -04:00
parent fc505110f1
commit efa0b7a056
13 changed files with 77 additions and 96 deletions

View file

@ -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() {

View file

@ -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;