summaryrefslogtreecommitdiff
path: root/include/JSystem/JMath
diff options
context:
space:
mode:
authorhatal175 <hatal175@users.noreply.github.com>2025-08-12 03:18:42 +0300
committerGitHub <noreply@github.com>2025-08-11 17:18:42 -0700
commit58a6d8d7931e982a4d00fe14d30f2bf325ac4e84 (patch)
treea2b9eaf0de5fc18ace2a3907241f196f2847a4d4 /include/JSystem/JMath
parentddf4fc0677f6b93162389063168458244e14ac59 (diff)
d_a_obj_gomikabe OK (#2580)
* d_a_obj_gomikabe OK * Remove unneeded include
Diffstat (limited to 'include/JSystem/JMath')
-rw-r--r--include/JSystem/JMath/JMATrigonometric.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/JMath/JMATrigonometric.h b/include/JSystem/JMath/JMATrigonometric.h
index fdbab33a1a..1b88975794 100644
--- a/include/JSystem/JMath/JMATrigonometric.h
+++ b/include/JSystem/JMath/JMATrigonometric.h
@@ -103,7 +103,7 @@ inline f32 acosDegree(f32 x) {
}
}; // namespace JMath
-inline f32 JMASCosShort(s16 v) {
+inline f32 JMACosShort(s16 v) {
return JMath::sincosTable_.cosShort(v);
}
inline f32 JMASinShort(s16 v) {
@@ -111,7 +111,7 @@ inline f32 JMASinShort(s16 v) {
}
inline f32 JMASCos(s16 v) {
- return JMASCosShort(v);
+ return JMACosShort(v);
}
inline f32 JMASSin(s16 v) {
return JMASinShort(v);