mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
Fix #17964: Sprites don't show up on two sides of the view-clip selection
This commit is contained in:
parent
6d97bbddf9
commit
20333c32fe
2 changed files with 3 additions and 2 deletions
|
@ -74,6 +74,7 @@
|
|||
- Fix: [#17980] Queue lines of track designs mess up existing queue lines if dragged through them.
|
||||
- Fix: [#17959] Areas marked for dirty drawing are too large.
|
||||
- Fix: [#17963] Some marketing campaigns can’t be started after Finances window tab has been on Research.
|
||||
- Fix: [#17964] Sprites don’t show up on two sides of the view-clip selection.
|
||||
- Fix: [#17966] Reversed steel trains do not properly import from S4.
|
||||
- Fix: [#17973] Bins and lamps overlay parts of the land (original bug).
|
||||
- Fix: [#18008] Steeplechase S-bends has multiple gaps visible in the tracks (original bug).
|
||||
|
|
|
@ -85,11 +85,11 @@ void EntityPaintSetup(paint_session& session, const CoordsXY& pos)
|
|||
{
|
||||
continue;
|
||||
}
|
||||
if (entityPos.x < gClipSelectionA.x || entityPos.x > gClipSelectionB.x)
|
||||
if (entityPos.x < gClipSelectionA.x || entityPos.x > (gClipSelectionB.x + COORDS_XY_STEP - 1))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (entityPos.y < gClipSelectionA.y || entityPos.y > gClipSelectionB.y)
|
||||
if (entityPos.y < gClipSelectionA.y || entityPos.y > (gClipSelectionB.y + COORDS_XY_STEP - 1))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue