mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-31 02:35:46 +01:00
Replace snakes in Class names OpenRCT2/N*-P* (#19227)
* Replace snakes in Class names OpenRCT2/N*-P* * Rename PODDate (and TimeOfDay for good measure) Co-authored-by: Gymnasiast <m.o.steenbeek@gmail.com>
This commit is contained in:
@@ -92,7 +92,7 @@ enum
|
||||
struct ObjectListItem
|
||||
{
|
||||
const ObjectRepositoryItem* repositoryItem;
|
||||
std::unique_ptr<rct_object_filters> filter;
|
||||
std::unique_ptr<RideFilters> filter;
|
||||
uint8_t* flags;
|
||||
};
|
||||
|
||||
@@ -1132,10 +1132,10 @@ private:
|
||||
if (item->Type == GetSelectedObjectType() && !(selectionFlags & ObjectSelectionFlags::Flag6) && FilterSource(item)
|
||||
&& FilterString(*item) && FilterChunks(item) && FilterSelected(selectionFlags))
|
||||
{
|
||||
auto filter = std::make_unique<rct_object_filters>();
|
||||
filter->ride.category[0] = 0;
|
||||
filter->ride.category[1] = 0;
|
||||
filter->ride.ride_type = 0;
|
||||
auto filter = std::make_unique<RideFilters>();
|
||||
filter->category[0] = 0;
|
||||
filter->category[1] = 0;
|
||||
filter->ride_type = 0;
|
||||
|
||||
ObjectListItem currentListItem;
|
||||
currentListItem.repositoryItem = item;
|
||||
|
||||
Reference in New Issue
Block a user