Browse Source

[acc] do not consider system profile as orphaned (#2708)

Profile 00000000000000000000000000000000 is apparently needed for acnh,
etc

Signed-off-by: crueter <crueter@eden-emu.dev>

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2708
pull/2652/head
crueter 3 months ago
parent
commit
3656253262
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 3
      src/core/hle/service/acc/profile_manager.cpp

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

@ -509,6 +509,9 @@ std::vector<std::string> ProfileManager::FindOrphanedProfiles()
good_uuids.emplace_back(uuid_string);
}
// used for acnh, etc
good_uuids.emplace_back("00000000000000000000000000000000");
// TODO: fetch save_id programmatically
const auto path = Common::FS::GetEdenPath(Common::FS::EdenPath::NANDDir)
/ "user/save/0000000000000000";

Loading…
Cancel
Save