mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 02:41:58 -05:00
Fix #13961: Guests sliding down slide missing on close zoom levels
This commit is contained in:
parent
9d3f3fa224
commit
a4f58c67f4
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ static void spiral_slide_paint_tile_front(
|
|||
}
|
||||
|
||||
rct_drawpixelinfo* dpi = &session->DPI;
|
||||
if (dpi->zoom_level == 0 && ride->slide_in_use != 0)
|
||||
if (dpi->zoom_level <= 0 && ride->slide_in_use != 0)
|
||||
{
|
||||
uint8_t slide_progress = ride->spiral_slide_progress;
|
||||
if (slide_progress != 0)
|
||||
|
|
Loading…
Reference in a new issue