HLE/FS: Fixed creating the config savefile when it doesn't exist.
This fixes a regression.
This commit is contained in:
parent
d26c6b3212
commit
95380d8950
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ ResultCode UpdateConfigNANDSavegame() {
|
||||||
|
|
||||||
ResultCode FormatConfig() {
|
ResultCode FormatConfig() {
|
||||||
ResultCode res = DeleteConfigNANDSaveFile();
|
ResultCode res = DeleteConfigNANDSaveFile();
|
||||||
if (!res.IsSuccess())
|
if (!res.IsSuccess() && res.description != ErrorDescription::FS_NotFound)
|
||||||
return res;
|
return res;
|
||||||
// Delete the old data
|
// Delete the old data
|
||||||
cfg_config_file_buffer.fill(0);
|
cfg_config_file_buffer.fill(0);
|
||||||
|
|
Loading…
Reference in a new issue