diff options
| author | 2016-03-18 09:57:15 -0400 | |
|---|---|---|
| committer | 2016-03-18 09:57:15 -0400 | |
| commit | 958b978efe1e297687b63c3b3b305519db72ba0f (patch) | |
| tree | 2f18bde1c3bf21114ff6e44cff4a42fb4e356feb | |
| parent | Merge pull request #1505 from pippo2931/fef (diff) | |
| parent | vector_math: Add missing member in Vec4's SetZero function (diff) | |
| download | yuzu-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.h | 5 |
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) |