summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-01-31 13:04:35 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-01-31 13:04:35 +0100
commit2394807b423f2d75ef57a3c6be8059f588b36613 (patch)
treef67f86d5e8865c6235a68f0228ebee13bf56e171
parentMerge pull request #5857 from Morph1984/bsd-fix-eventfd-stub (diff)
downloadyuzu-2394807b423f2d75ef57a3c6be8059f588b36613.tar
yuzu-2394807b423f2d75ef57a3c6be8059f588b36613.tar.gz
yuzu-2394807b423f2d75ef57a3c6be8059f588b36613.tar.bz2
yuzu-2394807b423f2d75ef57a3c6be8059f588b36613.tar.lz
yuzu-2394807b423f2d75ef57a3c6be8059f588b36613.tar.xz
yuzu-2394807b423f2d75ef57a3c6be8059f588b36613.tar.zst
yuzu-2394807b423f2d75ef57a3c6be8059f588b36613.zip
-rw-r--r--src/core/hle/service/prepo/prepo.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/service/prepo/prepo.cpp b/src/core/hle/service/prepo/prepo.cpp
index 86ecc5b97..14b19030a 100644
--- a/src/core/hle/service/prepo/prepo.cpp
+++ b/src/core/hle/service/prepo/prepo.cpp
@@ -25,7 +25,7 @@ public:
{10103, &PlayReport::SaveReportWithUser<Core::Reporter::PlayReportType::Old2>, "SaveReportWithUserOld2"},
{10104, &PlayReport::SaveReport<Core::Reporter::PlayReportType::New>, "SaveReport"},
{10105, &PlayReport::SaveReportWithUser<Core::Reporter::PlayReportType::New>, "SaveReportWithUser"},
- {10200, nullptr, "RequestImmediateTransmission"},
+ {10200, &PlayReport::RequestImmediateTransmission, "RequestImmediateTransmission"},
{10300, nullptr, "GetTransmissionStatus"},
{10400, &PlayReport::GetSystemSessionId, "GetSystemSessionId"},
{20100, &PlayReport::SaveSystemReport, "SaveSystemReport"},
@@ -108,6 +108,13 @@ private:
rb.Push(RESULT_SUCCESS);
}
+ void RequestImmediateTransmission(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_PREPO, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_SUCCESS);
+ }
+
void GetSystemSessionId(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_PREPO, "(STUBBED) called");