mirror of
https://github.com/zeldaret/oot
synced 2026-06-01 17:57:57 -04:00
[ntsc-1.2] Match N64 libultra (#2081)
* Match N64 libultra * INITIALIZE_FUNC -> OSINITIALIZE_FUNC * Document osGetIntMask * Refer readers of osGetIntMask to osSetIntMask comment * Whitelist new static functions in disasm unksyms check
This commit is contained in:
@@ -20,5 +20,5 @@ void MtxConv_F2L(Mtx* m1, MtxF* m2) {
|
||||
void MtxConv_L2F(MtxF* m1, Mtx* m2) {
|
||||
LOG_UTILS_CHECK_NULL_POINTER("m1", m1, "../mtxuty-cvt.c", 55);
|
||||
LOG_UTILS_CHECK_NULL_POINTER("m2", m2, "../mtxuty-cvt.c", 56);
|
||||
guMtxL2F(m1, m2);
|
||||
guMtxL2F(m1->mf, m2);
|
||||
}
|
||||
|
||||
@@ -1020,7 +1020,7 @@ void Matrix_SetTranslateUniformScaleMtx(Mtx* mtx, f32 scale, f32 translateX, f32
|
||||
MtxF mf;
|
||||
|
||||
Matrix_SetTranslateUniformScaleMtxF(&mf, scale, translateX, translateY, translateZ);
|
||||
guMtxF2L(&mf, mtx);
|
||||
guMtxF2L(mf.mf, mtx);
|
||||
}
|
||||
|
||||
void Matrix_SetTranslateUniformScaleMtx2(Mtx* mtx, f32 scale, f32 translateX, f32 translateY, f32 translateZ) {
|
||||
|
||||
Reference in New Issue
Block a user