mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #612 from yuriks/fix-A4
Video core: Fix A4 texture decoding
This commit is contained in:
		
						commit
						c7dac73b0c
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -436,9 +436,9 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture | ||||||
| 
 | 
 | ||||||
|     case Regs::TextureFormat::A4: |     case Regs::TextureFormat::A4: | ||||||
|     { |     { | ||||||
|         const u8* source_ptr = source + offset / 2 + i / 2; |         const u8* source_ptr = source + (offset + i) / 2; | ||||||
| 
 | 
 | ||||||
|         u8 a = (coarse_x % 2) ? ((*source_ptr)&0xF) : (((*source_ptr) & 0xF0) >> 4); |         u8 a = (i % 2) ? ((*source_ptr & 0xF0) >> 4) : (*source_ptr & 0xF); | ||||||
|         a = Color::Convert4To8(a); |         a = Color::Convert4To8(a); | ||||||
| 
 | 
 | ||||||
|         if (disable_alpha) { |         if (disable_alpha) { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue