mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
profile_manager: Use INVALID_UUID in the initializer of last_opened_user
Makes it a little bit more self-documenting.
This commit is contained in:
parent
9d8f19d7bf
commit
350f6e0aa4
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ private:
|
|||
size_t user_count = 0;
|
||||
boost::optional<size_t> AddToProfiles(const ProfileInfo& profile);
|
||||
bool RemoveProfileAtIndex(size_t index);
|
||||
UUID last_opened_user{0, 0};
|
||||
UUID last_opened_user{INVALID_UUID};
|
||||
};
|
||||
|
||||
}; // namespace Service::Account
|
||||
|
|
Loading…
Reference in a new issue