summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2016-03-18 09:57:15 -0400
committerGravatar bunnei2016-03-18 09:57:15 -0400
commit958b978efe1e297687b63c3b3b305519db72ba0f (patch)
tree2f18bde1c3bf21114ff6e44cff4a42fb4e356feb
parentMerge pull request #1505 from pippo2931/fef (diff)
parentvector_math: Add missing member in Vec4's SetZero function (diff)
downloadyuzu-958b978efe1e297687b63c3b3b305519db72ba0f.tar.gz
yuzu-958b978efe1e297687b63c3b3b305519db72ba0f.tar.xz
yuzu-958b978efe1e297687b63c3b3b305519db72ba0f.zip
Merge pull request #1543 from lioncash/zero
vector_math: Add missing member in Vec4's SetZero function
Diffstat (limited to '')
-rw-r--r--src/common/vector_math.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/vector_math.h b/src/common/vector_math.h
index 02688e35e..cfb9481b6 100644
--- a/src/common/vector_math.h
+++ b/src/common/vector_math.h
@@ -447,7 +447,10 @@ public:
447 447
448 void SetZero() 448 void SetZero()
449 { 449 {
450 x=0; y=0; z=0; 450 x = 0;
451 y = 0;
452 z = 0;
453 w = 0;
451 } 454 }
452 455
453 // Common alias: RGBA (colors) 456 // Common alias: RGBA (colors)