1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Rename ride_construct_new

This commit is contained in:
Gymnasiast
2023-01-17 19:14:58 +01:00
parent 3cc2d94b1b
commit b3ddb509e3
4 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@
*
* rct2: 0x006B4800
*/
void ride_construct_new(RideSelection listItem)
void RideConstructNew(RideSelection listItem)
{
int32_t rideEntryIndex = RideGetEntryIndex(listItem.Type, listItem.EntryIndex);
int32_t colour1 = RideGetRandomColourPresetIndex(listItem.Type);

View File

@@ -11,4 +11,4 @@
#include <openrct2/ride/RideTypes.h>
void ride_construct_new(RideSelection listItem);
void RideConstructNew(RideSelection listItem);

View File

@@ -534,7 +534,7 @@ private:
return;
}
ride_construct_new(item);
RideConstructNew(item);
}
int32_t GetNumTrackDesigns(RideSelection item)

View File

@@ -114,7 +114,7 @@ private:
if (listIndex == 0)
{
Close();
ride_construct_new(_window_track_list_item);
RideConstructNew(_window_track_list_item);
return;
}
listIndex--;