aboutsummaryrefslogtreecommitdiff
path: root/src/rlgl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rlgl.c')
-rw-r--r--src/rlgl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rlgl.c b/src/rlgl.c
index 6fb4bf3d..68d562c7 100644
--- a/src/rlgl.c
+++ b/src/rlgl.c
@@ -2559,13 +2559,13 @@ void DestroyLight(Light light)
{
if (light != NULL)
{
- int light_id = light->id;
+ int lightId = light->id;
// Free dynamic memory allocation
- free(lights[light_id]);
-
+ free(lights[lightId]);
+
// Remove *obj from the pointers array
- for (int i = light_id; i < lightsCount; i++)
+ for (int i = lightId; i < lightsCount; i++)
{
// Resort all the following pointers of the array
if ((i + 1) < lightsCount)