Fix #13961: Guests sliding down slide missing on close zoom levels

This commit is contained in:
Cory Sanin 2021-02-04 07:03:52 -06:00 committed by GitHub
parent 9d3f3fa224
commit a4f58c67f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)