summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/acc/acc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 6bafb2dce..83c723379 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -30,8 +30,7 @@ struct ProfileBase {
30}; 30};
31static_assert(sizeof(ProfileBase) == 0x38, "ProfileBase structure has incorrect size"); 31static_assert(sizeof(ProfileBase) == 0x38, "ProfileBase structure has incorrect size");
32 32
33using Uid = std::array<u64, 2>; 33static constexpr u128 DEFAULT_USER_ID{1ull, 0ull};
34static constexpr Uid DEFAULT_USER_ID{0x10ull, 0x20ull};
35 34
36class IProfile final : public ServiceFramework<IProfile> { 35class IProfile final : public ServiceFramework<IProfile> {
37public: 36public: