mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-24 23:34:37 +01:00
Fix variable name type conflict
This commit is contained in:
@@ -269,8 +269,8 @@ struct campaign_variables
|
||||
int16_t no_weeks; // 0x482
|
||||
union
|
||||
{
|
||||
RideId RideId; // 0x484
|
||||
ObjectEntryIndex ShopItemId; // 0x484
|
||||
::RideId RideId;
|
||||
ObjectEntryIndex ShopItemId;
|
||||
};
|
||||
uint32_t pad_486;
|
||||
};
|
||||
|
||||
@@ -50,7 +50,7 @@ struct MarketingCampaign
|
||||
uint8_t Flags{};
|
||||
union
|
||||
{
|
||||
RideId RideId{};
|
||||
::RideId RideId{};
|
||||
ShopItemIndex ShopItemType;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace OpenRCT2::RideAudio
|
||||
*/
|
||||
struct ViewportRideMusicInstance
|
||||
{
|
||||
RideId RideId;
|
||||
::RideId RideId;
|
||||
uint8_t TrackIndex{};
|
||||
|
||||
size_t Offset{};
|
||||
@@ -49,7 +49,7 @@ namespace OpenRCT2::RideAudio
|
||||
*/
|
||||
struct RideMusicChannel
|
||||
{
|
||||
RideId RideId{};
|
||||
::RideId RideId{};
|
||||
uint8_t TrackIndex{};
|
||||
|
||||
size_t Offset{};
|
||||
|
||||
Reference in New Issue
Block a user