REVIEWED: Cast values to improve Zig interconnection

This commit is contained in:
Ray 2023-05-19 18:47:55 +02:00
parent aa81c167f1
commit 78ad65365e

View File

@ -4513,8 +4513,8 @@ static int GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue)
{ {
if (CHECK_BOUNDS_ID(bounds, guiSliderActive)) if (CHECK_BOUNDS_ID(bounds, guiSliderActive))
{ {
if (isVertical) value += (GetMouseDelta().y/(scrollbar.height - slider.height)*valueRange); if (isVertical) value += (int)(GetMouseDelta().y/(scrollbar.height - slider.height)*valueRange);
else value += (GetMouseDelta().x/(scrollbar.width - slider.width)*valueRange); else value += (int)(GetMouseDelta().x/(scrollbar.width - slider.width)*valueRange);
} }
} }
else else
@ -4550,8 +4550,8 @@ static int GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue)
} }
else if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) else if (IsMouseButtonDown(MOUSE_LEFT_BUTTON))
{ {
if (isVertical) value += (GetMouseDelta().y/(scrollbar.height - slider.height)*valueRange); if (isVertical) value += (int)(GetMouseDelta().y/(scrollbar.height - slider.height)*valueRange);
else value += (GetMouseDelta().x/(scrollbar.width - slider.width)*valueRange); else value += (int)(GetMouseDelta().x/(scrollbar.width - slider.width)*valueRange);
} }
// Keyboard control on mouse hover scrollbar // Keyboard control on mouse hover scrollbar