Add fallback for people without RCT1

This commit is contained in:
Gymnasiast 2024-03-20 20:07:57 +01:00
parent 8614517e14
commit c1c71003eb
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
1 changed files with 5 additions and 0 deletions

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: