1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-11 17:30:25 +00:00
This commit is contained in:
fig02 2022-02-09 00:51:23 -05:00
parent 9dc6860e62
commit 28719443c2
2 changed files with 3 additions and 2 deletions

View file

@ -70,7 +70,7 @@ f64 __floatundidf(u32 c) {
f32 __powisf2(f32 a, s32 b) {
const s32 recip = b < 0;
f32 r = 1;
while (1) {
if (b & 1) {
r *= a;
@ -85,4 +85,4 @@ f32 __powisf2(f32 a, s32 b) {
a *= a;
}
return recip ? 1/r : r;
}
}