mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	FS/ExtData: Use the ExtSaveDataArchivePath structure instead of reinterpret_cast.
This commit is contained in:
		
							parent
							
								
									37cb18358b
								
							
						
					
					
						commit
						b54e278eeb
					
				
					 1 changed files with 12 additions and 19 deletions
				
			
		|  | @ -141,10 +141,12 @@ static_assert(sizeof(ExtSaveDataArchivePath) == 12, "Incorrect path size"); | ||||||
| 
 | 
 | ||||||
| std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) { | std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) { | ||||||
|     std::vector<u8> vec_data = path.AsBinary(); |     std::vector<u8> vec_data = path.AsBinary(); | ||||||
|     const u32* data = reinterpret_cast<const u32*>(vec_data.data()); | 
 | ||||||
|     u32 save_low = data[1]; |     ExtSaveDataArchivePath path_data; | ||||||
|     u32 save_high = data[2]; |     std::memcpy(&path_data, vec_data.data(), sizeof(path_data)); | ||||||
|     return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_high, save_low); | 
 | ||||||
|  |     return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), path_data.save_high, | ||||||
|  |                                     path_data.save_low); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) { | std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) { | ||||||
|  | @ -156,22 +158,13 @@ std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| Path ConstructExtDataBinaryPath(u32 media_type, u32 high, u32 low) { | Path ConstructExtDataBinaryPath(u32 media_type, u32 high, u32 low) { | ||||||
|     std::vector<u8> binary_path; |     ExtSaveDataArchivePath path; | ||||||
|     binary_path.reserve(12); |     path.media_type = media_type; | ||||||
|  |     path.save_high = high; | ||||||
|  |     path.save_low = low; | ||||||
| 
 | 
 | ||||||
|     // Append each word byte by byte
 |     std::vector<u8> binary_path(sizeof(path)); | ||||||
| 
 |     std::memcpy(binary_path.data(), &path, binary_path.size()); | ||||||
|     // The first word is the media type
 |  | ||||||
|     for (unsigned i = 0; i < 4; ++i) |  | ||||||
|         binary_path.push_back((media_type >> (8 * i)) & 0xFF); |  | ||||||
| 
 |  | ||||||
|     // Next is the low word
 |  | ||||||
|     for (unsigned i = 0; i < 4; ++i) |  | ||||||
|         binary_path.push_back((low >> (8 * i)) & 0xFF); |  | ||||||
| 
 |  | ||||||
|     // Next is the high word
 |  | ||||||
|     for (unsigned i = 0; i < 4; ++i) |  | ||||||
|         binary_path.push_back((high >> (8 * i)) & 0xFF); |  | ||||||
| 
 | 
 | ||||||
|     return {binary_path}; |     return {binary_path}; | ||||||
| } | } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue