diff options
| author | 2022-02-05 12:35:39 -0500 | |
|---|---|---|
| committer | 2022-02-05 13:56:21 -0500 | |
| commit | 25db62ce1534cbd8b93b4284869229e4bd7de54d (patch) | |
| tree | dd74d3fc6ba14a0de5e88778cad5b5c65fcba248 /src/core/hle/service/ns | |
| parent | profile: Migrate to the new UUID implementation (diff) | |
| download | yuzu-25db62ce1534cbd8b93b4284869229e4bd7de54d.tar.gz yuzu-25db62ce1534cbd8b93b4284869229e4bd7de54d.tar.xz yuzu-25db62ce1534cbd8b93b4284869229e4bd7de54d.zip | |
general: Rename NewUUID to UUID, and remove the previous UUID impl
This completes the removal of the old UUID implementation.
Diffstat (limited to 'src/core/hle/service/ns')
| -rw-r--r-- | src/core/hle/service/ns/pdm_qry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ns/pdm_qry.cpp b/src/core/hle/service/ns/pdm_qry.cpp index 3eda444d2..36ce46353 100644 --- a/src/core/hle/service/ns/pdm_qry.cpp +++ b/src/core/hle/service/ns/pdm_qry.cpp | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #include <memory> | 5 | #include <memory> |
| 6 | 6 | ||
| 7 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 8 | #include "common/new_uuid.h" | 8 | #include "common/uuid.h" |
| 9 | #include "core/hle/ipc_helpers.h" | 9 | #include "core/hle/ipc_helpers.h" |
| 10 | #include "core/hle/service/ns/pdm_qry.h" | 10 | #include "core/hle/service/ns/pdm_qry.h" |
| 11 | #include "core/hle/service/service.h" | 11 | #include "core/hle/service/service.h" |
| @@ -49,7 +49,7 @@ void PDM_QRY::QueryPlayStatisticsByApplicationIdAndUserAccountId(Kernel::HLERequ | |||
| 49 | const auto unknown = rp.Pop<bool>(); | 49 | const auto unknown = rp.Pop<bool>(); |
| 50 | rp.Pop<u8>(); // Padding | 50 | rp.Pop<u8>(); // Padding |
| 51 | const auto application_id = rp.Pop<u64>(); | 51 | const auto application_id = rp.Pop<u64>(); |
| 52 | const auto user_account_uid = rp.PopRaw<Common::NewUUID>(); | 52 | const auto user_account_uid = rp.PopRaw<Common::UUID>(); |
| 53 | 53 | ||
| 54 | // TODO(German77): Read statistics of the game | 54 | // TODO(German77): Read statistics of the game |
| 55 | PlayStatistics statistics{ | 55 | PlayStatistics statistics{ |