mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 06:10:00 +00:00
savedata_factory: Delete TemporaryStorage on startup
Mimics hardware behavior.
This commit is contained in:
parent
f761e3ef86
commit
5721b8b5ad
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@ std::string SaveDataDescriptor::DebugInfo() const {
|
|||
static_cast<u8>(type), title_id, user_id[1], user_id[0], save_id);
|
||||
}
|
||||
|
||||
SaveDataFactory::SaveDataFactory(VirtualDir save_directory) : dir(std::move(save_directory)) {}
|
||||
SaveDataFactory::SaveDataFactory(VirtualDir save_directory) : dir(std::move(save_directory)) {
|
||||
// Delete all temporary storages
|
||||
// On hardware, it is expected that temporary storage be empty at first use.
|
||||
dir->DeleteSubdirectoryRecursive("temp");
|
||||
}
|
||||
|
||||
SaveDataFactory::~SaveDataFactory() = default;
|
||||
|
||||
|
|
Loading…
Reference in a new issue