mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	HLE/FS: Fixed the OpenDirectory error code
This commit is contained in:
		@@ -405,7 +405,7 @@ ResultVal<Kernel::SharedPtr<Directory>> OpenDirectoryFromArchive(ArchiveHandle a
 | 
			
		||||
 | 
			
		||||
    std::unique_ptr<FileSys::DirectoryBackend> backend = archive->OpenDirectory(path);
 | 
			
		||||
    if (backend == nullptr) {
 | 
			
		||||
        return ResultCode(ErrorDescription::NotFound, ErrorModule::FS,
 | 
			
		||||
        return ResultCode(ErrorDescription::FS_NotFound, ErrorModule::FS,
 | 
			
		||||
                          ErrorSummary::NotFound, ErrorLevel::Permanent);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user