From 1e1061d5c7582090df0851c08359d7c7847f9559 Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 30 Jun 2024 11:37:58 +0200 Subject: REVIEWED: Formatting, follow raylib coding conventions --- src/rlgl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rlgl.h') 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; -- cgit v1.2.3