diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-28 01:46:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-28 01:46:10 +0100 |
commit | 22432668be6d34b5a5275bcc631cadf512f36bf9 (patch) | |
tree | 88aeebd3448ad8fa701914839c0b1f3c876c62ac /src/core/hle/service/hid/irs.h | |
parent | Merge pull request #9874 from german77/violet (diff) | |
parent | am: avoid direct pointer access of transfer memory objects (diff) | |
download | yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.tar yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.tar.gz yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.tar.bz2 yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.tar.lz yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.tar.xz yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.tar.zst yuzu-22432668be6d34b5a5275bcc631cadf512f36bf9.zip |
Diffstat (limited to 'src/core/hle/service/hid/irs.h')
-rw-r--r-- | src/core/hle/service/hid/irs.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/irs.h b/src/core/hle/service/hid/irs.h index 2e6115c73..b76ad7854 100644 --- a/src/core/hle/service/hid/irs.h +++ b/src/core/hle/service/hid/irs.h @@ -80,7 +80,13 @@ private: LOG_CRITICAL(Service_IRS, "Invalid index {}", index); return; } - processors[index] = std::make_unique<T>(system.HIDCore(), device_state, index); + + if constexpr (std::is_constructible_v<T, Core::System&, Core::IrSensor::DeviceFormat&, + std::size_t>) { + processors[index] = std::make_unique<T>(system, device_state, index); + } else { + processors[index] = std::make_unique<T>(system.HIDCore(), device_state, index); + } } template <typename T> |