summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-02-16 22:51:37 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-02-16 22:51:37 +0100
commit8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd (patch)
treec90fc345b2f7a6ed361974ee1bc0bbe18149e5d0 /src/video_core
parentMerge pull request #539 from linkmauve/framebuffer-formats (diff)
downloadyuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.tar
yuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.tar.gz
yuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.tar.bz2
yuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.tar.lz
yuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.tar.xz
yuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.tar.zst
yuzu-8a1c08a0af38a9b2dc768f0d695cb8ed2d680fdd.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/math.h b/src/video_core/math.h
index c176b225a..f9a822658 100644
--- a/src/video_core/math.h
+++ b/src/video_core/math.h
@@ -631,7 +631,7 @@ static inline Vec4<T> MakeVec(const Vec3<T>& xyz, const T& w)
}
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]);
}