From f0a356b977f513a59e759fcfb49bcedb899ee06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agnis=20Aldi=C5=86=C5=A1=20=22NeZv=C4=93rs?= Date: Sat, 15 Nov 2025 15:45:11 +0200 Subject: [PATCH] code formatting --- examples/textures/textures_screen_buffer.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/textures/textures_screen_buffer.c b/examples/textures/textures_screen_buffer.c index 878186f2b..f5e67f20c 100644 --- a/examples/textures/textures_screen_buffer.c +++ b/examples/textures/textures_screen_buffer.c @@ -83,7 +83,8 @@ int main(void) } // Skip top row, it is already cleared - for (int y = 1; y < imageHeight; ++y){ + for (int y = 1; y < imageHeight; ++y) + { for (int x = 0; x < imageWidth; ++x) { unsigned i = x + y * imageWidth; @@ -104,7 +105,8 @@ int main(void) } // Update screenImage with palette colors - for (int y = 1; y < imageHeight; ++y){ + for (int y = 1; y < imageHeight; ++y) + { for (int x = 0; x < imageWidth; ++x) { unsigned i = x + y * imageWidth;