1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-20 14:23:08 +01:00

Fix #10582: Low clearance tunnels below water draw incorrectly

This commit is contained in:
mix
2025-03-07 18:48:12 +00:00
committed by GitHub
parent 0426f85688
commit fd148356c8
2 changed files with 7 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
- Change: [#23932] The land rights window now checks 'Land Owned' by default.
- Fix: [#4225] Ride Construction window offers non-existent banked sloped to level curve (original bug).
- Fix: [#10379] Banners outside the park can be renamed and modified (original bug).
- Fix: [#10582] Low clearance tunnels below water are drawn incorrectly (original bug).
- Fix: [#23743] Parks with guest goals over 32767 do not appear in the scenario list.
- Fix: [#23844] Sound effects keep playing when loading another save.
- Fix: [#23897] Reverse Freefall Coaster slope up to vertical track piece does not draw a vertical tunnel.

View File

@@ -573,6 +573,9 @@ static void ViewportSurfaceDrawTileSideBottom(
return;
}
neighbourCornerHeight1 = std::max(cornerHeight1, neighbourCornerHeight1);
neighbourCornerHeight2 = std::max(cornerHeight2, neighbourCornerHeight2);
cornerHeight1 = height;
cornerHeight2 = height;
}
@@ -763,6 +766,9 @@ static void ViewportSurfaceDrawTileSideTop(
return;
}
neighbourCornerHeight1 = std::max(cornerHeight1, neighbourCornerHeight1);
neighbourCornerHeight2 = std::max(cornerHeight2, neighbourCornerHeight2);
cornerHeight1 = height;
cornerHeight2 = height;
}