mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	vfpdouble: Fix the FTOUI NaN sign setting
This was fixed for vfpsingle, but not vfpdouble
This commit is contained in:
		
							parent
							
								
									7dfdbe22de
								
							
						
					
					
						commit
						53fa04f326
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -552,7 +552,7 @@ static u32 vfp_double_ftoui(ARMul_State* state, int sd, int unused, int dm, u32 | ||||||
|         exceptions |= FPSCR_IDC; |         exceptions |= FPSCR_IDC; | ||||||
| 
 | 
 | ||||||
|     if (tm & VFP_NAN) |     if (tm & VFP_NAN) | ||||||
|         vdm.sign = 0; |         vdm.sign = 1; | ||||||
| 
 | 
 | ||||||
|     if (vdm.exponent >= 1023 + 32) { |     if (vdm.exponent >= 1023 + 32) { | ||||||
|         d = vdm.sign ? 0 : 0xffffffff; |         d = vdm.sign ? 0 : 0xffffffff; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue