Browse Source

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

pull/15/merge
Lioncash 7 years ago
parent
commit
9761936e02
  1. 9
      src/core/hle/service/acc/profile_manager.cpp

9
src/core/hle/service/acc/profile_manager.cpp

@ -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(),

Loading…
Cancel
Save