mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Loader: Added stubbed detection of CXI and CCI files.
This commit is contained in:
		
							parent
							
								
									10ae45b5e7
								
							
						
					
					
						commit
						2d7c46c874
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		|  | @ -120,6 +120,12 @@ FileType IdentifyFile(std::string &filename) { | ||||||
|     else if (!strcasecmp(extension.c_str(), ".axf")) { |     else if (!strcasecmp(extension.c_str(), ".axf")) { | ||||||
|         return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
 |         return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
 | ||||||
|     } |     } | ||||||
|  |     else if (!strcasecmp(extension.c_str(), ".cxi")) { | ||||||
|  |         return FILETYPE_CTR_CXI; // TODO(bunnei): Do some filetype checking :p
 | ||||||
|  |     } | ||||||
|  |     else if (!strcasecmp(extension.c_str(), ".cci")) { | ||||||
|  |         return FILETYPE_CTR_CCI; // TODO(bunnei): Do some filetype checking :p
 | ||||||
|  |     } | ||||||
|     else if (!strcasecmp(extension.c_str(), ".bin")) { |     else if (!strcasecmp(extension.c_str(), ".bin")) { | ||||||
|         return FILETYPE_CTR_BIN; |         return FILETYPE_CTR_BIN; | ||||||
|     } |     } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue