summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
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 {
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)