Browse Source
[acc] do not consider system profile as orphaned
Profile 00000000000000000000000000000000 is apparently needed for acnh,
etc
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/2708/head
crueter
5 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with
3 additions and
0 deletions
-
src/core/hle/service/acc/profile_manager.cpp
|
|
@ -509,6 +509,9 @@ std::vector<std::string> ProfileManager::FindOrphanedProfiles() |
|
|
good_uuids.emplace_back(uuid_string); |
|
|
good_uuids.emplace_back(uuid_string); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// used for acnh, etc
|
|
|
|
|
|
good_uuids.emplace_back("00000000000000000000000000000000"); |
|
|
|
|
|
|
|
|
// TODO: fetch save_id programmatically
|
|
|
// TODO: fetch save_id programmatically
|
|
|
const auto path = Common::FS::GetEdenPath(Common::FS::EdenPath::NANDDir) |
|
|
const auto path = Common::FS::GetEdenPath(Common::FS::EdenPath::NANDDir) |
|
|
/ "user/save/0000000000000000"; |
|
|
/ "user/save/0000000000000000"; |
|
|
|