diff options
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/cfg/cfg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cfg/cfg.cpp b/src/core/hle/service/cfg/cfg.cpp index 7bcedc0ae..bb2c55612 100644 --- a/src/core/hle/service/cfg/cfg.cpp +++ b/src/core/hle/service/cfg/cfg.cpp | |||
| @@ -310,7 +310,7 @@ ResultCode UpdateConfigNANDSavegame() { | |||
| 310 | 310 | ||
| 311 | ResultCode FormatConfig() { | 311 | ResultCode FormatConfig() { |
| 312 | ResultCode res = DeleteConfigNANDSaveFile(); | 312 | ResultCode res = DeleteConfigNANDSaveFile(); |
| 313 | if (!res.IsSuccess()) | 313 | if (!res.IsSuccess() && res.description != ErrorDescription::FS_NotFound) |
| 314 | return res; | 314 | return res; |
| 315 | // Delete the old data | 315 | // Delete the old data |
| 316 | cfg_config_file_buffer.fill(0); | 316 | cfg_config_file_buffer.fill(0); |