summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-14 19:54:29 +0100
committerGitHub <noreply@github.com>2019-11-14 19:54:29 +0100
commit885d88825ef455648537f5dca745bcc30da135e5 (patch)
treeddc10d4247d2a882e0fd84d1ba024d93f5b2d29c /src/core/hle/service/am/am.cpp
parentMerge pull request #3093 from lioncash/mbedtls (diff)
parentImplement stub for QueryApplicationPlayStatisticsByUid (diff)
downloadyuzu-885d88825ef455648537f5dca745bcc30da135e5.tar
yuzu-885d88825ef455648537f5dca745bcc30da135e5.tar.gz
yuzu-885d88825ef455648537f5dca745bcc30da135e5.tar.bz2
yuzu-885d88825ef455648537f5dca745bcc30da135e5.tar.lz
yuzu-885d88825ef455648537f5dca745bcc30da135e5.tar.xz
yuzu-885d88825ef455648537f5dca745bcc30da135e5.tar.zst
yuzu-885d88825ef455648537f5dca745bcc30da135e5.zip
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
-rw-r--r--src/core/hle/service/am/am.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index ba54b3040..d52ec4387 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -1077,6 +1077,7 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_)
{101, &IApplicationFunctions::SetApplicationCopyrightImage, "SetApplicationCopyrightImage"},
{102, &IApplicationFunctions::SetApplicationCopyrightVisibility, "SetApplicationCopyrightVisibility"},
{110, nullptr, "QueryApplicationPlayStatistics"},
+ {111, &IApplicationFunctions::QueryApplicationPlayStatisticsByUid, "QueryApplicationPlayStatisticsByUid"},
{120, nullptr, "ExecuteProgram"},
{121, nullptr, "ClearUserChannel"},
{122, nullptr, "UnpopToUserChannel"},
@@ -1384,6 +1385,14 @@ void IApplicationFunctions::GetGpuErrorDetectedSystemEvent(Kernel::HLERequestCon
rb.PushCopyObjects(gpu_error_detected_event.readable);
}
+void IApplicationFunctions::QueryApplicationPlayStatisticsByUid(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_AM, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 3};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push<u32>(0);
+}
+
void InstallInterfaces(SM::ServiceManager& service_manager,
std::shared_ptr<NVFlinger::NVFlinger> nvflinger, Core::System& system) {
auto message_queue = std::make_shared<AppletMessageQueue>(system.Kernel());