diff options
| author | 2018-08-20 18:55:12 -0400 | |
|---|---|---|
| committer | 2018-08-20 19:48:57 -0400 | |
| commit | 0fcdf379171ad1a0aea3e7e1828324a8255f867c (patch) | |
| tree | 0bda4d53d24218eb78aa798502b17ddee1ef9080 /src/core/hle | |
| parent | profile_manager: Use INVALID_UUID in the initializer of last_opened_user (diff) | |
| download | yuzu-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.cpp | 3 |
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 | }; |
| 28 | static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size"); | 28 | static_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? | ||
| 31 | static UUID DEFAULT_USER_ID{1ull, 0ull}; | ||
| 32 | |||
| 33 | class IProfile final : public ServiceFramework<IProfile> { | 30 | class IProfile final : public ServiceFramework<IProfile> { |
| 34 | public: | 31 | public: |
| 35 | explicit IProfile(UUID user_id, ProfileManager& profile_manager) | 32 | explicit IProfile(UUID user_id, ProfileManager& profile_manager) |