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:
@@ -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);
|
||||
|
||||
@@ -11,4 +11,4 @@
|
||||
|
||||
#include <openrct2/ride/RideTypes.h>
|
||||
|
||||
void ride_construct_new(RideSelection listItem);
|
||||
void RideConstructNew(RideSelection listItem);
|
||||
|
||||
@@ -534,7 +534,7 @@ private:
|
||||
return;
|
||||
}
|
||||
|
||||
ride_construct_new(item);
|
||||
RideConstructNew(item);
|
||||
}
|
||||
|
||||
int32_t GetNumTrackDesigns(RideSelection item)
|
||||
|
||||
@@ -114,7 +114,7 @@ private:
|
||||
if (listIndex == 0)
|
||||
{
|
||||
Close();
|
||||
ride_construct_new(_window_track_list_item);
|
||||
RideConstructNew(_window_track_list_item);
|
||||
return;
|
||||
}
|
||||
listIndex--;
|
||||
|
||||
Reference in New Issue
Block a user