diff options
| author | Liam <byteslice@airmail.cc> | 2024-02-20 18:40:04 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-02-20 18:43:44 -0500 |
| commit | b107435a3fbdd7b34baf23c87e3c3bc6a9a6e6ac (patch) | |
| tree | 7093a003c4f3b1d3d2586ff364dd65968ec67304 /src/core/hle/service/ns/query_service.h | |
| parent | 4e1fcd4a63219ea2ce6dd962e0ee040b7d50e051 (diff) | |
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.h | 4 |
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 |
