mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #904 from aroulin/y2r-narrowing-warning
Y2R: Fix narrowing warning
This commit is contained in:
		
						commit
						2501f111a6
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -111,7 +111,7 @@ static void SendData(const u32* input, ConversionBuffer& buf, int amount_of_data | ||||||
|         while (output < unit_end) { |         while (output < unit_end) { | ||||||
|             u32 color = *input++; |             u32 color = *input++; | ||||||
|             Math::Vec4<u8> col_vec{ |             Math::Vec4<u8> col_vec{ | ||||||
|                 (color >> 24) & 0xFF, (color >> 16) & 0xFF, (color >>  8) & 0xFF, alpha, |                 (u8)(color >> 24), (u8)(color >> 16), (u8)(color >> 8), alpha | ||||||
|             }; |             }; | ||||||
| 
 | 
 | ||||||
|             switch (output_format) { |             switch (output_format) { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue