summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/query_service.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-21 03:19:35 +0100
committerGitHub <noreply@github.com>2024-02-21 03:19:35 +0100
commit7b5bdd076df136e6e057bce1c1e7702e0cd131d9 (patch)
treedafc468071ca5642f92441908cefefb495be30af /src/core/hle/service/ns/query_service.cpp
parentMerge pull request #10529 from liamwhite/critical-spacing (diff)
parentns: fix alignment of uid type (diff)
downloadyuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.tar
yuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.tar.gz
yuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.tar.bz2
yuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.tar.lz
yuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.tar.xz
yuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.tar.zst
yuzu-7b5bdd076df136e6e057bce1c1e7702e0cd131d9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/query_service.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/ns/query_service.cpp b/src/core/hle/service/ns/query_service.cpp
index 946b7fa23..138400541 100644
--- a/src/core/hle/service/ns/query_service.cpp
+++ b/src/core/hle/service/ns/query_service.cpp
@@ -41,8 +41,7 @@ IQueryService::IQueryService(Core::System& system_) : ServiceFramework{system_,
IQueryService::~IQueryService() = default;
Result IQueryService::QueryPlayStatisticsByApplicationIdAndUserAccountId(
- Out<PlayStatistics> out_play_statistics, bool unknown, Common::UUID account_id,
- u64 application_id) {
+ Out<PlayStatistics> out_play_statistics, bool unknown, u64 application_id, Uid account_id) {
// TODO(German77): Read statistics of the game
*out_play_statistics = {
.application_id = application_id,
@@ -50,7 +49,7 @@ Result IQueryService::QueryPlayStatisticsByApplicationIdAndUserAccountId(
};
LOG_WARNING(Service_NS, "(STUBBED) called. unknown={}. application_id={:016X}, account_id={}",
- unknown, application_id, account_id.FormattedString());
+ unknown, application_id, account_id.uuid.FormattedString());
R_SUCCEED();
}