1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 20:13:07 +01:00

Fixed bug that caused widgets to miss draw. Fix #335

This commit is contained in:
Duncan Frost
2014-10-05 12:24:14 +01:00
parent 7869b8efd8
commit 068e0c3396

View File

@@ -1331,8 +1331,8 @@ void window_draw_widgets(rct_window *w, rct_drawpixelinfo *dpi)
widgetIndex = 0;
for (widget = w->widgets; widget->type != WWT_LAST; widget++) {
// Check if widget is outside the draw region
if (w->x + widget->left < dpi->x + dpi->width && w->x + widget->right > dpi->x)
if (w->y + widget->top < dpi->y + dpi->height && w->y + widget->bottom > dpi->y)
if (w->x + widget->left < dpi->x + dpi->width && w->x + widget->right >= dpi->x)
if (w->y + widget->top < dpi->y + dpi->height && w->y + widget->bottom >= dpi->y)
widget_draw(dpi, w, widgetIndex);
widgetIndex++;