mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
174af7384d
* cleanup libultra * fixes - use quotes instead of <> for includes - add macros for zelda specific thread priorities - fix Makefile - properly format the remaining pfs structs * fix button macros + add CHECK_BTN_ANY/CHECK_BTN_ALL * remove ULTRA_ABS * fix includes * update z_player.c/z_lib.c + run format.sh * merge upstream/master * fix include in En_Goroiwa * fix includes
12 lines
193 B
C
12 lines
193 B
C
#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);
|
|
}
|