1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-22 21:35:27 +00:00
oot/src/code/code_801067F0.c

14 lines
214 B
C
Raw Normal View History

#include <ultra64.h>
#include <global.h>
2020-06-05 21:09:43 +00:00
// fmodf?
f32 func_801067F0(f32 arg0, f32 arg1) {
s32 sp4;
if (arg1 == 0.0f) {
return 0.0f;
}
sp4 = arg0 / arg1;
return arg0 - (sp4 * arg1);
}