diff options
author | german77 <juangerman-13@hotmail.com> | 2022-12-26 19:49:49 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-01-20 01:05:22 +0100 |
commit | 5cb437703fa441a08db295f8a916caedc3a581f2 (patch) | |
tree | 148c35e47d18462f0b8f8e116e2247b4cbfdbde2 /src/core/hid/emulated_controller.cpp | |
parent | input_common: Use DriverResult on all engines (diff) | |
download | yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.tar yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.tar.gz yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.tar.bz2 yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.tar.lz yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.tar.xz yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.tar.zst yuzu-5cb437703fa441a08db295f8a916caedc3a581f2.zip |
Diffstat (limited to 'src/core/hid/emulated_controller.cpp')
-rw-r--r-- | src/core/hid/emulated_controller.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp index 62da5be6c..915ffa490 100644 --- a/src/core/hid/emulated_controller.cpp +++ b/src/core/hid/emulated_controller.cpp @@ -1200,7 +1200,8 @@ bool EmulatedController::IsVibrationEnabled(std::size_t device_index) { return output_devices[device_index]->IsVibrationEnabled(); } -bool EmulatedController::SetPollingMode(Common::Input::PollingMode polling_mode) { +Common::Input::DriverResult EmulatedController::SetPollingMode( + Common::Input::PollingMode polling_mode) { LOG_INFO(Service_HID, "Set polling mode {}", polling_mode); auto& output_device = output_devices[static_cast<std::size_t>(DeviceIndex::Right)]; auto& nfc_output_device = output_devices[3]; @@ -1208,8 +1209,11 @@ bool EmulatedController::SetPollingMode(Common::Input::PollingMode polling_mode) const auto virtual_nfc_result = nfc_output_device->SetPollingMode(polling_mode); const auto mapped_nfc_result = output_device->SetPollingMode(polling_mode); - return virtual_nfc_result == Common::Input::DriverResult::Success || - mapped_nfc_result == Common::Input::DriverResult::Success; + if (virtual_nfc_result == Common::Input::DriverResult::Success) { + return virtual_nfc_result; + } + + return mapped_nfc_result; } bool EmulatedController::SetCameraFormat( |