Browse Source

vector_math: Add missing member in Vec4's SetZero function

nce_cpp
Lioncash 10 years ago
parent
commit
0c83775827
  1. 5
      src/common/vector_math.h

5
src/common/vector_math.h

@ -447,7 +447,10 @@ public:
void SetZero()
{
x=0; y=0; z=0;
x = 0;
y = 0;
z = 0;
w = 0;
}
// Common alias: RGBA (colors)

Loading…
Cancel
Save