1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Add fallback for people without RCT1

This commit is contained in:
Gymnasiast
2024-03-20 20:07:57 +01:00
parent 8614517e14
commit c1c71003eb

View File

@@ -1441,6 +1441,11 @@ static void classicStandUpRCTrackDiagRightBankTo25DegDown(
TRACK_PAINT_FUNCTION GetTrackPaintFunctionClassicStandUpRC(int32_t trackType)
{
if (!IsCsgLoaded())
{
return GetTrackPaintFunctionStandUpRC(trackType);
}
switch (trackType)
{
case TrackElemType::FlatToLeftBank: