summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-21 21:19:35 +0100
committerLioncash <mathew1800@gmail.com>2018-12-21 21:25:31 +0100
commitacddf16e57b7673a413fd0ecde618246d8539c5b (patch)
treec5d05be980007d14c4086e318c9d148923810863
parentMerge pull request #1921 from ogniK5377/no-unit (diff)
downloadyuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.tar
yuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.tar.gz
yuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.tar.bz2
yuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.tar.lz
yuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.tar.xz
yuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.tar.zst
yuzu-acddf16e57b7673a413fd0ecde618246d8539c5b.zip
-rw-r--r--src/common/quaternion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/quaternion.h b/src/common/quaternion.h
index ea39298c1..c528c0b68 100644
--- a/src/common/quaternion.h
+++ b/src/common/quaternion.h
@@ -12,7 +12,7 @@ template <typename T>
class Quaternion {
public:
Math::Vec3<T> xyz;
- T w;
+ T w{};
Quaternion<decltype(-T{})> Inverse() const {
return {-xyz, w};