profile_manager: Replace iterative loop with a ranged-for loop in ParseUserSaveFile()

This commit is contained in:
Lioncash 2018-11-14 17:13:14 -05:00
parent 1af13e0802
commit 9761936e02

View File

@ -341,11 +341,12 @@ void ProfileManager::ParseUserSaveFile() {
return;
}
for (std::size_t i = 0; i < MAX_USERS; ++i) {
const auto& user = data.users[i];
for (const auto& user : data.users) {
if (user.uuid == UUID(INVALID_UUID)) {
continue;
}
if (user.uuid != UUID(INVALID_UUID))
AddUser({user.uuid, user.username, user.timestamp, {}, false});
AddUser({user.uuid, user.username, user.timestamp, {}, false});
}
std::stable_partition(profiles.begin(), profiles.end(),