mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 01:13:43 +00:00 
			
		
		
		
	Merge pull request #1543 from lioncash/zero
vector_math: Add missing member in Vec4's SetZero function
This commit is contained in:
		
						commit
						958b978efe
					
				@ -447,7 +447,10 @@ public:
 | 
			
		||||
 | 
			
		||||
    void SetZero()
 | 
			
		||||
    {
 | 
			
		||||
        x=0; y=0; z=0;
 | 
			
		||||
        x = 0;
 | 
			
		||||
        y = 0;
 | 
			
		||||
        z = 0;
 | 
			
		||||
        w = 0;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Common alias: RGBA (colors)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user