Delete assert and size information

This commit is contained in:
Denis Khabenkov 2019-10-07 22:26:16 +03:00
parent de53ac84b8
commit 163221520b
No known key found for this signature in database
GPG Key ID: CDBBC59653704243
1 changed files with 5 additions and 6 deletions

View File

@ -21,15 +21,14 @@ struct Ride;
#define TRACK_PREVIEW_IMAGE_SIZE (370 * 217)
/* Track Entrance entry size: 0x06 */
/* Track Entrance entry */
struct TrackDesignEntranceElement
{
int8_t z; // 0x00
uint8_t direction; // 0x01
int16_t x; // 0x02
int16_t y; // 0x04
int8_t z;
uint8_t direction;
int16_t x;
int16_t y;
};
assert_struct_size(TrackDesignEntranceElement, 0x06);
/**
* Track design structure.