aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/irs.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-07-27 15:54:28 -0400
committerGitHub <noreply@github.com>2022-07-27 15:54:28 -0400
commit64fd9f41a7d1170dbfa827f796033c4f2cad0cf0 (patch)
tree4ccf48f3361f4bd2e4c35b5c9a48e42c12892564 /src/core/hle/service/hid/irs.cpp
parenta761d020c61de5a1d354ad9721a66f4c4c9b1e2e (diff)
parentceb70b2139f5a938813fd97e9feaa216c53ac318 (diff)
Merge pull request #8636 from german77/irs_cluster_release
service: irs: Implement clustering processor
Diffstat (limited to 'src/core/hle/service/hid/irs.cpp')
-rw-r--r--src/core/hle/service/hid/irs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/irs.cpp b/src/core/hle/service/hid/irs.cpp
index d5107e41f..c4b44cbf9 100644
--- a/src/core/hle/service/hid/irs.cpp
+++ b/src/core/hle/service/hid/irs.cpp
@@ -166,7 +166,7 @@ void IRS::RunClusteringProcessor(Kernel::HLERequestContext& ctx) {
if (result.IsSuccess()) {
auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle);
- MakeProcessor<ClusteringProcessor>(parameters.camera_handle, device);
+ MakeProcessorWithCoreContext<ClusteringProcessor>(parameters.camera_handle, device);
auto& image_transfer_processor =
GetProcessor<ClusteringProcessor>(parameters.camera_handle);
image_transfer_processor.SetConfig(parameters.processor_config);