diff options
Diffstat (limited to 'src')
| -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) |