diff options
| author | 2022-12-05 18:23:17 -0500 | |
|---|---|---|
| committer | 2022-12-05 18:27:18 -0500 | |
| commit | e4a16f50eff470d9c87a32143e559716171f12b2 (patch) | |
| tree | d082c473d8b98cdc25a2803531c20c5e849313b9 /src/core | |
| parent | emulated_controller: Use std::move() in GetMappedDevices() (diff) | |
| download | yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.gz yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.tar.xz yuzu-e4a16f50eff470d9c87a32143e559716171f12b2.zip | |
emulated_controller: Remove unused parameter in GetMappedDevices()
This isn't used, so it can be removed to make the function a little
nicer.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hid/emulated_controller.cpp | 3 | ||||
| -rw-r--r-- | src/core/hid/emulated_controller.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp index 09f870eb0..67969e938 100644 --- a/src/core/hid/emulated_controller.cpp +++ b/src/core/hid/emulated_controller.cpp | |||
| @@ -424,8 +424,7 @@ void EmulatedController::RestoreConfig() { | |||
| 424 | ReloadFromSettings(); | 424 | ReloadFromSettings(); |
| 425 | } | 425 | } |
| 426 | 426 | ||
| 427 | std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices( | 427 | std::vector<Common::ParamPackage> EmulatedController::GetMappedDevices() const { |
| 428 | EmulatedDeviceIndex device_index) const { | ||
| 429 | std::vector<Common::ParamPackage> devices; | 428 | std::vector<Common::ParamPackage> devices; |
| 430 | for (const auto& param : button_params) { | 429 | for (const auto& param : button_params) { |
| 431 | if (!param.Has("engine")) { | 430 | if (!param.Has("engine")) { |
diff --git a/src/core/hid/emulated_controller.h b/src/core/hid/emulated_controller.h index 3f83108d3..fa7a34278 100644 --- a/src/core/hid/emulated_controller.h +++ b/src/core/hid/emulated_controller.h | |||
| @@ -244,7 +244,7 @@ public: | |||
| 244 | void RestoreConfig(); | 244 | void RestoreConfig(); |
| 245 | 245 | ||
| 246 | /// Returns a vector of mapped devices from the mapped button and stick parameters | 246 | /// Returns a vector of mapped devices from the mapped button and stick parameters |
| 247 | std::vector<Common::ParamPackage> GetMappedDevices(EmulatedDeviceIndex device_index) const; | 247 | std::vector<Common::ParamPackage> GetMappedDevices() const; |
| 248 | 248 | ||
| 249 | // Returns the current mapped button device | 249 | // Returns the current mapped button device |
| 250 | Common::ParamPackage GetButtonParam(std::size_t index) const; | 250 | Common::ParamPackage GetButtonParam(std::size_t index) const; |