From 3d83c1c79667c1f2655b74eb047888fd661e2c68 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 25 Mar 2025 19:27:55 +0100 Subject: [PATCH] Format tweak --- src/rlgl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rlgl.h b/src/rlgl.h index 27ce8f9e3..1516354e3 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -3684,7 +3684,7 @@ unsigned char *rlReadScreenPixels(int width, int height) // Flip image vertically! // NOTE: Alpha value has already been applied to RGB in framebuffer, we don't need it! - for (int y = height - 1; y >= height / 2; y--) + for (int y = height - 1; y >= height/2; y--) { for (int x = 0; x < (width*4); x += 4) {