CGraphics: Silence missing initializer warning

Makes the initializer field for the aspect member explicit along with
the rest of the supplied values.
This commit is contained in:
Lioncash 2020-02-24 02:28:21 -05:00
parent 61f9adfa70
commit 35ae2c2981
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ zeus::CTransform CGraphics::g_GXViewPointMatrix;
zeus::CTransform CGraphics::g_CameraMatrix;
SClipScreenRect CGraphics::g_CroppedViewport;
bool CGraphics::g_IsGXModelMatrixIdentity = true;
SViewport g_Viewport = {0, 0, 640, 480, 640 / 2.f, 480 / 2.f};
SViewport g_Viewport = {
0, 0, 640, 480, 640 / 2.f, 480 / 2.f, 0.0f,
};
u32 CGraphics::g_FrameCounter = 0;
const zeus::CMatrix3f CGraphics::skCubeBasisMats[] = {