summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-07-19 23:51:55 +0200
committerSubv <subv2112@gmail.com>2018-07-19 23:51:55 +0200
commit50e27777248c68525839ea7fce589334f4a86183 (patch)
tree8bcf25f82275fbf42048f8db207a1f5abe7722fe /src/core/hle/service/acc/acc.cpp
parentMerge pull request #720 from Subv/getentrytype_root (diff)
downloadyuzu-50e27777248c68525839ea7fce589334f4a86183.tar
yuzu-50e27777248c68525839ea7fce589334f4a86183.tar.gz
yuzu-50e27777248c68525839ea7fce589334f4a86183.tar.bz2
yuzu-50e27777248c68525839ea7fce589334f4a86183.tar.lz
yuzu-50e27777248c68525839ea7fce589334f4a86183.tar.xz
yuzu-50e27777248c68525839ea7fce589334f4a86183.tar.zst
yuzu-50e27777248c68525839ea7fce589334f4a86183.zip
Diffstat (limited to '')
-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 {
};
static_assert(sizeof(ProfileBase) == 0x38, "ProfileBase structure has incorrect size");
-using Uid = std::array<u64, 2>;
-static constexpr Uid DEFAULT_USER_ID{0x10ull, 0x20ull};
+static constexpr u128 DEFAULT_USER_ID{1ull, 0ull};
class IProfile final : public ServiceFramework<IProfile> {
public: