Remove unecessary padding from CVector3f

Former-commit-id: ca87e890b5
This commit is contained in:
Phillip Stephens 2022-10-09 10:57:13 -07:00
parent aaf11d85f6
commit 5e8d7a33a8
2 changed files with 0 additions and 3 deletions

View File

@ -106,7 +106,6 @@ protected:
float mZ;
static CVector3f sZeroVector;
static int sUnkData[18];
static CVector3f sUpVector;
static CVector3f sDownVector;
static CVector3f sLeftVector;

View File

@ -8,8 +8,6 @@
#include "types.h"
CVector3f CVector3f::sZeroVector(0.f, 0.f, 0.f);
int CVector3f::sUnkData[18]; // This data is unreferenced, only here to ensure sUpVector starts in
// the correct location
CVector3f CVector3f::sUpVector(0.f, 0.f, 1.f);
CVector3f CVector3f::sDownVector(0.f, 0.f, -1.f);
CVector3f CVector3f::sLeftVector(-1.f, 0.f, 0.f);