summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-20 18:55:12 -0400
committerGravatar Lioncash2018-08-20 19:48:57 -0400
commit0fcdf379171ad1a0aea3e7e1828324a8255f867c (patch)
tree0bda4d53d24218eb78aa798502b17ddee1ef9080 /src/core/hle
parentprofile_manager: Use INVALID_UUID in the initializer of last_opened_user (diff)
downloadyuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.gz
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.xz
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.zip
acc: Remove unused DEFAULT_USER_ID
This is no longer used, so it can be removed.
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/acc/acc.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 979f2f892..f2dd38a73 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -27,9 +27,6 @@ struct UserData {
27}; 27};
28static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size"); 28static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size");
29 29
30// TODO(ogniK): Generate a real user id based on username, md5(username) maybe?
31static UUID DEFAULT_USER_ID{1ull, 0ull};
32
33class IProfile final : public ServiceFramework<IProfile> { 30class IProfile final : public ServiceFramework<IProfile> {
34public: 31public:
35 explicit IProfile(UUID user_id, ProfileManager& profile_manager) 32 explicit IProfile(UUID user_id, ProfileManager& profile_manager)