diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-11-11 20:02:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-11 20:02:23 -0500 |
| commit | 767c4b5a992bfeeae9194bc9f5a3dc63996645df (patch) | |
| tree | ffff212b7bc47c001d46b0ed8dc2bda517130284 /src/core/hle/service/hid/irs.cpp | |
| parent | 904d03b01f0ce09e97b6b454c3281f83314dc952 (diff) | |
| parent | e588f341edfa208743e1202382ddf0929bff13be (diff) | |
Merge pull request #11980 from german77/moment
service: irs: Implement moment image processor
Diffstat (limited to 'src/core/hle/service/hid/irs.cpp')
| -rw-r--r-- | src/core/hle/service/hid/irs.cpp | 2 |
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 221c33b86..d383a266d 100644 --- a/src/core/hle/service/hid/irs.cpp +++ b/src/core/hle/service/hid/irs.cpp @@ -138,7 +138,7 @@ void IRS::RunMomentProcessor(HLERequestContext& ctx) { if (result.IsSuccess()) { auto& device = GetIrCameraSharedMemoryDeviceEntry(parameters.camera_handle); - MakeProcessor<MomentProcessor>(parameters.camera_handle, device); + MakeProcessorWithCoreContext<MomentProcessor>(parameters.camera_handle, device); auto& image_transfer_processor = GetProcessor<MomentProcessor>(parameters.camera_handle); image_transfer_processor.SetConfig(parameters.processor_config); npad_device->SetPollingMode(Core::HID::EmulatedDeviceIndex::RightIndex, |
