summaryrefslogtreecommitdiff
path: root/src/code/code_800FCE80.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2023-11-22 20:19:31 +1100
committerGitHub <noreply@github.com>2023-11-22 04:19:31 -0500
commitf2c06ce441a38a032202b9024fdfa57bb36a67c2 (patch)
treebb924e2c2b577db8138ac67a6e44a00b5f15b1f8 /src/code/code_800FCE80.c
parent2aaa286cf85a51a46bbf1e4ad8f8a36588fd22ad (diff)
Misc Cleanup (#1585)
* misc cleanup * more fake matches * revert for sym
Diffstat (limited to 'src/code/code_800FCE80.c')
-rw-r--r--src/code/code_800FCE80.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/code_800FCE80.c b/src/code/code_800FCE80.c
index 17b2bc4e5..8ac46833d 100644
--- a/src/code/code_800FCE80.c
+++ b/src/code/code_800FCE80.c
@@ -50,8 +50,8 @@ f32 Math_FAtanTaylorQF(f32 x) {
if (poly + term == poly) {
break;
}
- poly = poly + term;
- exp = exp * sq;
+ poly += term;
+ exp *= sq;
}
return poly;