mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 12:03:44 +00:00 
			
		
		
		
	pica: Add the ULL specifier in IsDefaultAttribute
This is necessary otherwise there are warnings about a 32-bit result being casted to a 64-bit value.
This commit is contained in:
		
							parent
							
								
									773b1ef6bf
								
							
						
					
					
						commit
						497f4bee0c
					
				@ -616,7 +616,7 @@ struct Regs {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        inline bool IsDefaultAttribute(int id) const {
 | 
			
		||||
            return (id >= 12) || (attribute_mask & (1 << id)) != 0;
 | 
			
		||||
            return (id >= 12) || (attribute_mask & (1ULL << id)) != 0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        inline int GetNumTotalAttributes() const {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user