mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-25 09:45:02 +00:00
Revert accidental rename of Matrix_MtxFToNewMtx (#460)
This commit is contained in:
parent
ce3542f60c
commit
daf624fe48
2 changed files with 2 additions and 2 deletions
|
@ -1850,7 +1850,7 @@ void func_800D1694(f32 x, f32 y, f32 z, Vec3s* vec);
|
||||||
Mtx* Matrix_MtxFToMtx(MtxF* src, Mtx* dest);
|
Mtx* Matrix_MtxFToMtx(MtxF* src, Mtx* dest);
|
||||||
Mtx* Matrix_ToMtx(Mtx* dest, char* file, s32 line);
|
Mtx* Matrix_ToMtx(Mtx* dest, char* file, s32 line);
|
||||||
Mtx* Matrix_NewMtx(GraphicsContext* gfxCtx, char* file, s32 line);
|
Mtx* Matrix_NewMtx(GraphicsContext* gfxCtx, char* file, s32 line);
|
||||||
Mtx* Matrix_SkinMatrix_MtxFToNewMtx(MtxF* src, GraphicsContext* gfxCtx);
|
Mtx* Matrix_MtxFToNewMtx(MtxF* src, GraphicsContext* gfxCtx);
|
||||||
void Matrix_MultVec3f(Vec3f* src, Vec3f* dest);
|
void Matrix_MultVec3f(Vec3f* src, Vec3f* dest);
|
||||||
void Matrix_MtxFCopy(MtxF* dest, MtxF* src);
|
void Matrix_MtxFCopy(MtxF* dest, MtxF* src);
|
||||||
void Matrix_MtxToMtxF(Mtx* src, MtxF* dest);
|
void Matrix_MtxToMtxF(Mtx* src, MtxF* dest);
|
||||||
|
|
|
@ -618,7 +618,7 @@ Mtx* Matrix_NewMtx(GraphicsContext* gfxCtx, char* file, s32 line) {
|
||||||
return Matrix_ToMtx(Graph_Alloc(gfxCtx, sizeof(Mtx)), file, 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)));
|
return Matrix_MtxFToMtx(src, Graph_Alloc(gfxCtx, sizeof(Mtx)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue