diff options
author | Tony Wasserka <neobrainx@gmail.com> | 2015-02-17 00:30:22 +0100 |
---|---|---|
committer | Tony Wasserka <neobrainx@gmail.com> | 2015-02-17 00:30:22 +0100 |
commit | a78b8b1bc409cb78f06a45e26d3f9ac3767fb907 (patch) | |
tree | b4c01135a95e292f747794ab4f2d1779b74e7b54 | |
parent | Merge pull request #577 from Subv/err (diff) | |
parent | VideoCore: Fix a typo in Vec4 MakeVec(T, Vec3<T>), where the second argument was Vec2<T> instead. (diff) | |
download | yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.tar yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.tar.gz yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.tar.bz2 yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.tar.lz yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.tar.xz yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.tar.zst yuzu-a78b8b1bc409cb78f06a45e26d3f9ac3767fb907.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/math.h | 2 |
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]); } |