summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rlgl.h')
-rw-r--r--src/rlgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 98d43ea5..5ab677d9 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -1560,7 +1560,7 @@ void rlNormal3f(float x, float y, float z)
float length = sqrtf(normalx*normalx + normaly*normaly + normalz*normalz);
if (length != 0.0f)
{
- float ilength = 1.0f / length;
+ float ilength = 1.0f/length;
normalx *= ilength;
normaly *= ilength;
normalz *= ilength;