mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Properly indicate that CIA support is not implemented yet
Make `Loader::LoadFile` return an `ErrorNotImplemented` if you call it on a CIA file.
This commit is contained in:
		
							parent
							
								
									cd8be1846b
								
							
						
					
					
						commit
						c0a87bc89f
					
				@ -136,6 +136,10 @@ ResultStatus LoadFile(const std::string& filename) {
 | 
				
			|||||||
        break;
 | 
					        break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // CIA file format...
 | 
				
			||||||
 | 
					    case FileType::CIA:
 | 
				
			||||||
 | 
					        return ResultStatus::ErrorNotImplemented;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Error occurred durring IdentifyFile...
 | 
					    // Error occurred durring IdentifyFile...
 | 
				
			||||||
    case FileType::Error:
 | 
					    case FileType::Error:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user