Fix warnings in visual studio (#3512)
This commit is contained in:
parent
fc21a8e552
commit
6cd37e57a6
11 changed files with 21 additions and 21 deletions
|
@ -70,7 +70,7 @@ int main(void)
|
|||
GuiSliderBar((Rectangle){ 600, 170, 120, 20}, "Segments", NULL, &segments, 0, 100);
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
minSegments = (int)ceilf((endAngle - startAngle) / 90);
|
||||
minSegments = truncf(ceilf((endAngle - startAngle) / 90));
|
||||
DrawText(TextFormat("MODE: %s", (segments >= minSegments)? "MANUAL" : "AUTO"), 600, 200, 10, (segments >= minSegments)? MAROON : DARKGRAY);
|
||||
|
||||
DrawFPS(10, 10);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue