mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Address review
simplify code
This commit is contained in:
		
							parent
							
								
									2ec99b83aa
								
							
						
					
					
						commit
						db18f6c79a
					
				
					 1 changed files with 2 additions and 10 deletions
				
			
		|  | @ -306,18 +306,10 @@ void LayeredFS::PrepareBuild(Directory& current) { | ||||||
| // Implementation from 3dbrew
 | // Implementation from 3dbrew
 | ||||||
| u32 CalcHash(const std::string& name, u32 parent_offset) { | u32 CalcHash(const std::string& name, u32 parent_offset) { | ||||||
|     u32 hash = parent_offset ^ 123456789; |     u32 hash = parent_offset ^ 123456789; | ||||||
| 
 |  | ||||||
|     std::u16string u16name = Common::UTF8ToUTF16(name); |     std::u16string u16name = Common::UTF8ToUTF16(name); | ||||||
|     std::vector<u16_le> tmp_buffer(u16name.size()); |     for (char16_t c : u16name) { | ||||||
|     std::transform(u16name.begin(), u16name.end(), tmp_buffer.begin(), [](char16_t character) { |  | ||||||
|         return static_cast<u16_le>(static_cast<u16>(character)); |  | ||||||
|     }); |  | ||||||
| 
 |  | ||||||
|     std::vector<u8> buffer(tmp_buffer.size() * 2); |  | ||||||
|     std::memcpy(buffer.data(), tmp_buffer.data(), buffer.size()); |  | ||||||
|     for (std::size_t i = 0; i < buffer.size(); i += 2) { |  | ||||||
|         hash = (hash >> 5) | (hash << 27); |         hash = (hash >> 5) | (hash << 27); | ||||||
|         hash ^= static_cast<u16>((buffer[i]) | (buffer[i + 1] << 8)); |         hash ^= static_cast<u16>(c); | ||||||
|     } |     } | ||||||
|     return hash; |     return hash; | ||||||
| } | } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue