aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ns/query_service.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-20 21:19:35 -0500
committerGitHub <noreply@github.com>2024-02-20 21:19:35 -0500
commit7b5bdd076df136e6e057bce1c1e7702e0cd131d9 (patch)
treedafc468071ca5642f92441908cefefb495be30af /src/core/hle/service/ns/query_service.h
parente0c17a21138ba4379a5c77b40a7d3fd7414ca605 (diff)
parentb107435a3fbdd7b34baf23c87e3c3bc6a9a6e6ac (diff)
Merge pull request #13095 from liamwhite/ns-oops
ns: fix alignment of uid type
Diffstat (limited to 'src/core/hle/service/ns/query_service.h')
-rw-r--r--src/core/hle/service/ns/query_service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ns/query_service.h b/src/core/hle/service/ns/query_service.h
index 6cdbfa277..c4c82b752 100644
--- a/src/core/hle/service/ns/query_service.h
+++ b/src/core/hle/service/ns/query_service.h
@@ -5,6 +5,7 @@
#include "common/uuid.h"
#include "core/hle/service/cmif_types.h"
+#include "core/hle/service/ns/ns_types.h"
#include "core/hle/service/service.h"
namespace Service::NS {
@@ -29,8 +30,7 @@ public:
private:
Result 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);
};
} // namespace Service::NS