summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-20 18:55:12 -0400
committerLioncash <mathew1800@gmail.com>2018-08-20 19:48:57 -0400
commit0fcdf379171ad1a0aea3e7e1828324a8255f867c (patch)
tree0bda4d53d24218eb78aa798502b17ddee1ef9080 /src
parent350f6e0aa4fa598b9449d53263de7262aacc4070 (diff)
acc: Remove unused DEFAULT_USER_ID
This is no longer used, so it can be removed.
Diffstat (limited to 'src')
-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)