summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 00:55:12 +0200
committerLioncash <mathew1800@gmail.com>2018-08-21 01:48:57 +0200
commit0fcdf379171ad1a0aea3e7e1828324a8255f867c (patch)
tree0bda4d53d24218eb78aa798502b17ddee1ef9080 /src/core
parentprofile_manager: Use INVALID_UUID in the initializer of last_opened_user (diff)
downloadyuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.gz
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.bz2
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.lz
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.xz
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.tar.zst
yuzu-0fcdf379171ad1a0aea3e7e1828324a8255f867c.zip
Diffstat (limited to 'src/core')
-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 {
};
static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size");
-// TODO(ogniK): Generate a real user id based on username, md5(username) maybe?
-static UUID DEFAULT_USER_ID{1ull, 0ull};
-
class IProfile final : public ServiceFramework<IProfile> {
public:
explicit IProfile(UUID user_id, ProfileManager& profile_manager)