mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	VideoCore: Fix a typo in Vec4 MakeVec(T, Vec3<T>), where the second argument was Vec2<T> instead.
This commit is contained in:
		
							parent
							
								
									20dc07721c
								
							
						
					
					
						commit
						8a1c08a0af
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -631,7 +631,7 @@ static inline Vec4<T> MakeVec(const Vec3<T>& xyz, const T& w) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| template<typename T> | template<typename T> | ||||||
| static inline Vec4<T> MakeVec(const T& x, const Vec2<T>& yzw) | static inline Vec4<T> MakeVec(const T& x, const Vec3<T>& yzw) | ||||||
| { | { | ||||||
|     return MakeVec(x, yzw[0], yzw[1], yzw[2]); |     return MakeVec(x, yzw[0], yzw[1], yzw[2]); | ||||||
| } | } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue