mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-04 12:45:03 +01:00 
			
		
		
		
	address_arbiter: Resolve sign conversion warning
Makes our type conversion explicit.
This commit is contained in:
		
							parent
							
								
									07691f994a
								
							
						
					
					
						commit
						1a45b15a8c
					
				@ -81,7 +81,7 @@ ResultCode AddressArbiter::IncrementAndSignalToAddressIfEqual(VAddr address, s32
 | 
			
		||||
    do {
 | 
			
		||||
        current_value = monitor.ExclusiveRead32(current_core, address);
 | 
			
		||||
 | 
			
		||||
        if (current_value != value) {
 | 
			
		||||
        if (current_value != static_cast<u32>(value)) {
 | 
			
		||||
            return ERR_INVALID_STATE;
 | 
			
		||||
        }
 | 
			
		||||
        current_value++;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user