mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-06 16:04:35 +00:00
Match sys_math.c and one in z_scene_table.c (#90)
* Match func_800CA63C * Remove func_800CA63C.s * Match func_8009BEEC? * Remove func_8009BEEC.s
This commit is contained in:
parent
b8a0751518
commit
06b731c494
4 changed files with 1 additions and 188 deletions
|
@ -12,13 +12,12 @@ f32 func_800CA540(f32 arg0) {
|
|||
return ret;
|
||||
}
|
||||
|
||||
#ifdef NON_MATCHING
|
||||
f32 func_800CA63C(u32 arg0) {
|
||||
f32 ret;
|
||||
s32 i;
|
||||
if (arg0 > 12) {
|
||||
ret = sFactorialTbl[12];
|
||||
for (i = 13; i < (s32)arg0; i++) {
|
||||
for (i = 13; i <= (s32)arg0; i++) {
|
||||
ret *= i;
|
||||
}
|
||||
} else {
|
||||
|
@ -26,9 +25,6 @@ f32 func_800CA63C(u32 arg0) {
|
|||
}
|
||||
return ret;
|
||||
}
|
||||
#else
|
||||
#pragma GLOBAL_ASM("asm/non_matchings/code/sys_math/func_800CA63C.s")
|
||||
#endif
|
||||
|
||||
f32 func_800CA6FC(f32 arg0, s32 arg1) {
|
||||
f32 ret = 1.0f;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue