mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	file_sys: Attempt to open New 3DS variant NCCH if available. (#6383)
This commit is contained in:
		
							parent
							
								
									a74d7a0e6b
								
							
						
					
					
						commit
						041252ba36
					
				
					 1 changed files with 12 additions and 2 deletions
				
			
		|  | @ -12,6 +12,7 @@ | ||||||
| #include "common/common_types.h" | #include "common/common_types.h" | ||||||
| #include "common/file_util.h" | #include "common/file_util.h" | ||||||
| #include "common/logging/log.h" | #include "common/logging/log.h" | ||||||
|  | #include "common/settings.h" | ||||||
| #include "common/string_util.h" | #include "common/string_util.h" | ||||||
| #include "common/swap.h" | #include "common/swap.h" | ||||||
| #include "core/core.h" | #include "core/core.h" | ||||||
|  | @ -88,8 +89,17 @@ ResultVal<std::unique_ptr<FileBackend>> NCCHArchive::OpenFile(const Path& path, | ||||||
|     NCCHFilePath openfile_path; |     NCCHFilePath openfile_path; | ||||||
|     std::memcpy(&openfile_path, binary.data(), sizeof(NCCHFilePath)); |     std::memcpy(&openfile_path, binary.data(), sizeof(NCCHFilePath)); | ||||||
| 
 | 
 | ||||||
|     std::string file_path = |     std::string file_path; | ||||||
|         Service::AM::GetTitleContentPath(media_type, title_id, openfile_path.content_index); |     if (Settings::values.is_new_3ds) { | ||||||
|  |         // Try the New 3DS specific variant first.
 | ||||||
|  |         file_path = Service::AM::GetTitleContentPath(media_type, title_id | 0x20000000, | ||||||
|  |                                                      openfile_path.content_index); | ||||||
|  |     } | ||||||
|  |     if (!Settings::values.is_new_3ds || !FileUtil::Exists(file_path)) { | ||||||
|  |         file_path = | ||||||
|  |             Service::AM::GetTitleContentPath(media_type, title_id, openfile_path.content_index); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|     auto ncch_container = NCCHContainer(file_path, 0, openfile_path.content_index); |     auto ncch_container = NCCHContainer(file_path, 0, openfile_path.content_index); | ||||||
| 
 | 
 | ||||||
|     Loader::ResultStatus result; |     Loader::ResultStatus result; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue