Browse Source

acc: Remove unused DEFAULT_USER_ID

This is no longer used, so it can be removed.
nce_cpp
Lioncash 7 years ago
parent
commit
f645b3ef5a
  1. 3
      src/core/hle/service/acc/acc.cpp

3
src/core/hle/service/acc/acc.cpp

@ -27,9 +27,6 @@ struct UserData {
}; };
static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size"); 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> { class IProfile final : public ServiceFramework<IProfile> {
public: public:
explicit IProfile(UUID user_id, ProfileManager& profile_manager) explicit IProfile(UUID user_id, ProfileManager& profile_manager)

Loading…
Cancel
Save