Fixed dolphin matricies the ugly way

This commit is contained in:
2026-04-18 00:36:35 -05:00
parent bddc9af3b6
commit 3b94598d2c
3 changed files with 17 additions and 25 deletions
@@ -24,13 +24,12 @@ typedef struct shaderdolphin_s {
mat4 view;
mat4 proj;
mat4 model;
mat4 modelView;
Mtx dolphinProj;
Mtx dolphinModelView;
bool_t isProjectionPerspective;
alignas(32) Mtx44 matrixProjection;
alignas(32) Mtx matrixView;
alignas(32) Mtx matrixModel;
alignas(32) Mtx matrixModelView;
uint_fast8_t dirtyMatrix;
} shaderdolphin_t;