aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/irs.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-06-19 15:54:21 -0500
committergerman77 <juangerman-13@hotmail.com>2022-07-24 15:01:43 -0500
commit3ac4f3a2521e421a625fe1d7dcba05b8441fe056 (patch)
treece7e1f5be8624a8b6d3084b9c4ef522f87ba6ac7 /src/core/hle/service/hid/irs.cpp
parent5af06d14337a61d9ed1093079d13f68cbb1f5451 (diff)
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);