diff --git a/src/video_core/math.h b/src/video_core/math.h index c176b225a9..f9a822658e 100644 --- a/src/video_core/math.h +++ b/src/video_core/math.h @@ -631,7 +631,7 @@ static inline Vec4 MakeVec(const Vec3& xyz, const T& w) } template -static inline Vec4 MakeVec(const T& x, const Vec2& yzw) +static inline Vec4 MakeVec(const T& x, const Vec3& yzw) { return MakeVec(x, yzw[0], yzw[1], yzw[2]); }