1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Add generated Steeplechase

This commit is contained in:
Michał Janiszewski
2016-10-09 14:26:27 +02:00
parent 3c110a3f3b
commit 39cb42342a
3 changed files with 1583 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6251,7 +6251,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_mini_suspended_rc, // RIDE_TYPE_MINI_SUSPENDED_COASTER
get_track_paint_function_boat_ride, // RIDE_TYPE_BOAT_RIDE
get_track_paint_function_wooden_wild_mouse, // RIDE_TYPE_WOODEN_WILD_MOUSE
0, // RIDE_TYPE_STEEPLECHASE
get_track_paint_function_steeplechase, // RIDE_TYPE_STEEPLECHASE
get_track_paint_function_car_ride, // RIDE_TYPE_CAR_RIDE
get_track_paint_function_launched_freefall, // RIDE_TYPE_LAUNCHED_FREEFALL
0, // RIDE_TYPE_BOBSLEIGH_COASTER

View File

@@ -269,6 +269,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_monorail(int trackType, int direct
TRACK_PAINT_FUNCTION get_track_paint_function_mini_suspended_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_boat_ride(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_wooden_wild_mouse(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_steeplechase(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_car_ride(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_launched_freefall(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_observation_tower(int trackType, int direction);