1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 19:56:13 +01:00

Fix testpaint code issues

This commit is contained in:
Ted John
2017-12-04 19:49:12 +00:00
parent fa968824a6
commit e879df31e8
3 changed files with 4 additions and 9 deletions

View File

@@ -20,12 +20,12 @@
#include "../common.h"
#include "../world/map.h"
#pragma pack(push, 1)
typedef struct rct_vehicle_colour {
uint8 body_colour;
uint8 trim_colour;
} rct_vehicle_colour;
#pragma pack(push, 1)
/**
* Ride type vehicle structure.
* size: 0x65

View File

@@ -53,7 +53,7 @@ namespace TestPaint
{
Ride ride = {0};
ride.entrance_style = RIDE_ENTRANCE_STYLE_PLAIN;
rct_ride_entry rideEntry = {0};
static rct_ride_entry rideEntry = {0};
rct_ride_entry_vehicle vehicleEntry { 0 };
vehicleEntry.base_image_id = 0x70000;
rideEntry.vehicles[0] = vehicleEntry;
@@ -61,12 +61,8 @@ namespace TestPaint
gRideEntries[0] = &rideEntry;
}
{
rct2_ride ride;
rct2_ride ride = {0};
ride.entrance_style = RIDE_ENTRANCE_STYLE_PLAIN;
rct_ride_entry rideEntry = {0};
rct_ride_entry_vehicle vehicleEntry { 0 };
vehicleEntry.base_image_id = 0x70000;
rideEntry.vehicles[0] = vehicleEntry;
RCT2_Rides[0] = ride;
}

View File

@@ -1,4 +1,3 @@
#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
@@ -58,4 +57,4 @@ sint32 RCT2_CALLPROC_X(sint32 address, sint32 _eax, sint32 _ebx, sint32 _ecx, si
}
#endif
#endif
#endif