summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/irs.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-07-27 21:54:28 +0200
committerGitHub <noreply@github.com>2022-07-27 21:54:28 +0200
commit64fd9f41a7d1170dbfa827f796033c4f2cad0cf0 (patch)
tree4ccf48f3361f4bd2e4c35b5c9a48e42c12892564 /src/core/hle/service/hid/irs.cpp
parentMerge pull request #8633 from Morph1984/optional-keys (diff)
parentAddress comments (diff)
downloadyuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.tar
yuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.tar.gz
yuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.tar.bz2
yuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.tar.lz
yuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.tar.xz
yuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.tar.zst
yuzu-64fd9f41a7d1170dbfa827f796033c4f2cad0cf0.zip
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);