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:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user