mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-02 15:55:59 +00:00
669732abbe
* Cleanup `UNK_TYPE`, `UNK_PTR` usage * Add some missing empty lines after declarations * Remove some legacy comments from non-matching times * Fix some grammar (mostly "it's"/"its") * Use proper names for two symbols after ZAPD bugfix * Cleanup `place_title_cards.xml` * Use `NULL` to check against `D_8012D260` pointer * Parentheses around some macro arguments * wip proofread headers up to z64animation.h
24 lines
620 B
C
24 lines
620 B
C
#include "global.h"
|
|
|
|
void MtxConv_F2L(Mtx* m1, MtxF* m2) {
|
|
s32 i;
|
|
s32 j;
|
|
|
|
LogUtils_CheckNullPointer("m1", m1, "../mtxuty-cvt.c", 31);
|
|
LogUtils_CheckNullPointer("m2", m2, "../mtxuty-cvt.c", 32);
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
for (j = 0; j < 4; j++) {
|
|
s32 value = (m2->mf[i][j] * 0x10000);
|
|
|
|
m1->intPart[i][j] = value >> 16;
|
|
m1->fracPart[i][j] = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
void MtxConv_L2F(MtxF* m1, Mtx* m2) {
|
|
LogUtils_CheckNullPointer("m1", m1, "../mtxuty-cvt.c", 55);
|
|
LogUtils_CheckNullPointer("m2", m2, "../mtxuty-cvt.c", 56);
|
|
guMtxL2F(m1, m2);
|
|
}
|