Format tweak

This commit is contained in:
Ray 2025-03-25 19:27:55 +01:00
parent 909c83fd4a
commit 3d83c1c796

View file

@ -3684,7 +3684,7 @@ unsigned char *rlReadScreenPixels(int width, int height)
// Flip image vertically! // Flip image vertically!
// NOTE: Alpha value has already been applied to RGB in framebuffer, we don't need it! // 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) for (int x = 0; x < (width*4); x += 4)
{ {