Skip to content

Commit

Permalink
fix crash when interpolation enabled on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
briaguya-ai authored and KiritoDv committed Dec 21, 2024
1 parent 74b056f commit ea87066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys/sys_matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Matrix* gGfxMatrix;
Matrix sGfxMatrixStack[0x1000];
Matrix* gCalcMatrix;
Matrix sCalcMatrixStack[0x1000];
Matrix* gInterpolationMatrix;
Matrix sInterpolationMatrixStack[0x1000];
Matrix* gInterpolationMatrix = &sInterpolationMatrixStack[0];

// Copies src Matrix into dst
void Matrix_Copy(Matrix* dst, Matrix* src) {
Expand Down

0 comments on commit ea87066

Please sign in to comment.