Change: Make terraforming point selection sprite visible at >2x zoom out (#11017)

This commit is contained in:
Richard Wheeler
2023-06-27 15:47:42 +01:00
committed by GitHub
parent 5b0cfc7ea5
commit 3b2934c479
3 changed files with 3 additions and 3 deletions

View File

@@ -1126,7 +1126,7 @@ draw_inner:
if (IsSteepSlope(ti->tileh)) z -= TILE_HEIGHT;
}
}
DrawSelectionSprite(_cur_dpi->zoom <= ZOOM_LVL_DETAIL ? SPR_DOT : SPR_DOT_SMALL, PAL_NONE, ti, z, foundation_part);
DrawSelectionSprite(SPR_DOT, PAL_NONE, ti, z, foundation_part);
} else if (_thd.drawstyle & HT_RAIL) {
/* autorail highlight piece under cursor */
HighLightStyle type = _thd.drawstyle & HT_DIR_MASK;