summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/erpt/erpt.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-18 16:37:52 +0100
committerGitHub <noreply@github.com>2024-02-18 16:37:52 +0100
commit1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6 (patch)
tree61fd5e387c45642135fbcbb88ab326236f4f7789 /src/core/hle/service/erpt/erpt.cpp
parentMerge pull request #13064 from t895/auto-map-fail (diff)
parentservice: erpt: Implement SubmitContext (diff)
downloadyuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.tar
yuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.tar.gz
yuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.tar.bz2
yuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.tar.lz
yuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.tar.xz
yuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.tar.zst
yuzu-1fc86b1e3a7690abfa668bb45b45ac0d5e4cc4f6.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/erpt/erpt.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/core/hle/service/erpt/erpt.cpp b/src/core/hle/service/erpt/erpt.cpp
index 3ea862fad..39ae3a723 100644
--- a/src/core/hle/service/erpt/erpt.cpp
+++ b/src/core/hle/service/erpt/erpt.cpp
@@ -3,6 +3,8 @@
#include <memory>
+#include "common/logging/log.h"
+#include "core/hle/service/cmif_serialization.h"
#include "core/hle/service/erpt/erpt.h"
#include "core/hle/service/server_manager.h"
#include "core/hle/service/service.h"
@@ -15,7 +17,7 @@ public:
explicit ErrorReportContext(Core::System& system_) : ServiceFramework{system_, "erpt:c"} {
// clang-format off
static const FunctionInfo functions[] = {
- {0, nullptr, "SubmitContext"},
+ {0, C<&ErrorReportContext::SubmitContext>, "SubmitContext"},
{1, nullptr, "CreateReportV0"},
{2, nullptr, "SetInitialLaunchSettingsCompletionTime"},
{3, nullptr, "ClearInitialLaunchSettingsCompletionTime"},
@@ -36,6 +38,14 @@ public:
RegisterHandlers(functions);
}
+
+private:
+ Result SubmitContext(InBuffer<BufferAttr_HipcMapAlias> buffer_a,
+ InBuffer<BufferAttr_HipcMapAlias> buffer_b) {
+ LOG_WARNING(Service_SET, "(STUBBED) called, buffer_a_size={}, buffer_b_size={}",
+ buffer_a.size(), buffer_b.size());
+ R_SUCCEED();
+ }
};
class ErrorReportSession final : public ServiceFramework<ErrorReportSession> {