Browse Source
Merge pull request #642 from bunnei/create-save-dir
savedata_factory: Always create a save directory for games.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
0 deletions
-
src/core/file_sys/savedata_factory.cpp
|
|
|
@ -17,6 +17,15 @@ SaveData_Factory::SaveData_Factory(std::string nand_directory) |
|
|
|
|
|
|
|
ResultVal<std::unique_ptr<FileSystemBackend>> SaveData_Factory::Open(const Path& path) { |
|
|
|
std::string save_directory = GetFullPath(); |
|
|
|
|
|
|
|
if (!FileUtil::Exists(save_directory)) { |
|
|
|
// TODO(bunnei): This is a work-around to always create a save data directory if it does not
|
|
|
|
// already exist. This is a hack, as we do not understand yet how this works on hardware.
|
|
|
|
// Without a save data directory, many games will assert on boot. This should not have any
|
|
|
|
// bad side-effects.
|
|
|
|
FileUtil::CreateFullPath(save_directory); |
|
|
|
} |
|
|
|
|
|
|
|
// Return an error if the save data doesn't actually exist.
|
|
|
|
if (!FileUtil::IsDirectory(save_directory)) { |
|
|
|
// TODO(Subv): Find out correct error code.
|
|
|
|
|