Converting int to char
Fixes warning: narrowing conversion caused by trying to convert int to unsigned char
This commit is contained in:
parent
cb830bed72
commit
513753c394
1 changed files with 5 additions and 1 deletions
|
@ -44,7 +44,11 @@ int main(void)
|
||||||
|
|
||||||
spacing += (int)buildings[i].width;
|
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 };
|
Camera2D camera = { 0 };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue