mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	HLE/FS: Fixed creating the config savefile when it doesn't exist.
This fixes a regression.
This commit is contained in:
		@@ -310,7 +310,7 @@ ResultCode UpdateConfigNANDSavegame() {
 | 
			
		||||
 | 
			
		||||
ResultCode FormatConfig() {
 | 
			
		||||
    ResultCode res = DeleteConfigNANDSaveFile();
 | 
			
		||||
    if (!res.IsSuccess())
 | 
			
		||||
    if (!res.IsSuccess() && res.description != ErrorDescription::FS_NotFound)
 | 
			
		||||
        return res;
 | 
			
		||||
    // Delete the old data
 | 
			
		||||
    cfg_config_file_buffer.fill(0);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user