mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 11:35:46 +00:00
vector_math: Add missing member in Vec4's SetZero function
This commit is contained in:
parent
a52226f4fc
commit
0c83775827
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue