mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
13 lines
214 B
C
13 lines
214 B
C
#include <ultra64.h>
|
|
#include <global.h>
|
|
|
|
// fmodf?
|
|
f32 func_801067F0(f32 arg0, f32 arg1) {
|
|
s32 sp4;
|
|
|
|
if (arg1 == 0.0f) {
|
|
return 0.0f;
|
|
}
|
|
sp4 = arg0 / arg1;
|
|
return arg0 - (sp4 * arg1);
|
|
}
|