From 513753c39493c2df9aa2ba2ad24901bf5c8e2249 Mon Sep 17 00:00:00 2001 From: Aidon Date: Thu, 13 Mar 2025 21:50:20 -0300 Subject: [PATCH] Converting int to char Fixes warning: narrowing conversion caused by trying to convert int to unsigned char --- examples/core/core_2d_camera.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/core/core_2d_camera.c b/examples/core/core_2d_camera.c index 44d3c6961..0a551f68b 100644 --- a/examples/core/core_2d_camera.c +++ b/examples/core/core_2d_camera.c @@ -44,7 +44,11 @@ int main(void) spacing += (int)buildings[i].width; - buildColors[i] = (Color){ GetRandomValue(200, 240), GetRandomValue(200, 240), GetRandomValue(200, 250), 255 }; + buildColors[i] = (Color){ + (unsigned char)GetRandomValue(200, 240), + (unsigned char)GetRandomValue(200, 240), + (unsigned char)GetRandomValue(200, 250), + 255}; } Camera2D camera = { 0 };