Revert accidental rename of Matrix_MtxFToNewMtx (#460)

This commit is contained in:
Roman971
2020-10-27 01:47:43 +01:00
committed by GitHub
parent ce3542f60c
commit daf624fe48
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -618,7 +618,7 @@ Mtx* Matrix_NewMtx(GraphicsContext* gfxCtx, char* file, s32 line) {
return Matrix_ToMtx(Graph_Alloc(gfxCtx, sizeof(Mtx)), file, line);
}
Mtx* Matrix_SkinMatrix_MtxFToNewMtx(MtxF* src, GraphicsContext* gfxCtx) {
Mtx* Matrix_MtxFToNewMtx(MtxF* src, GraphicsContext* gfxCtx) {
return Matrix_MtxFToMtx(src, Graph_Alloc(gfxCtx, sizeof(Mtx)));
}