Vec3: Remove a memset call on the this pointer

This commit is contained in:
Lioncash 2015-08-28 14:10:07 -04:00
parent d373dd372d
commit bb27f80a65
1 changed files with 3 additions and 1 deletions

View File

@ -158,7 +158,9 @@ public:
void SetZero()
{
memset((void*)this, 0, sizeof(float) * 3);
x = 0.0f;
y = 0.0f;
z = 0.0f;
}
void DoState(PointerWrap &p)