2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

vector_math: Add missing member in Vec4's SetZero function

This commit is contained in:
Lioncash 2016-03-18 01:49:00 -04:00
parent 58852bedbf
commit 1400aeceac

View file

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