summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/JSystem/JMath/JMath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/JSystem/JMath/JMath.h b/include/JSystem/JMath/JMath.h
index fd31a8dd25..f54e33d565 100644
--- a/include/JSystem/JMath/JMath.h
+++ b/include/JSystem/JMath/JMath.h
@@ -37,7 +37,7 @@ inline float __frsqrtes(register double f) {
#endif
}
-inline f32 JMAFastSqrt(register f32 input) {
+inline f32 JMAFastSqrt(register const f32 input) {
#ifdef __MWERKS__
if (input > 0.0f) {
register f32 out;