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

Add generated Lay down RC

This commit is contained in:
Michał Janiszewski
2016-10-09 14:43:49 +02:00
parent 6466916011
commit 3e5d445b79
3 changed files with 6276 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6303,7 +6303,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_virginia_reel, // RIDE_TYPE_VIRGINIA_REEL
get_track_paint_function_splash_boats, // RIDE_TYPE_SPLASH_BOATS
get_track_paint_function_mini_helicopters, // RIDE_TYPE_MINI_HELICOPTERS
0, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER
get_track_paint_function_lay_down_rc, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER
0, // RIDE_TYPE_SUSPENDED_MONORAIL
0, // RIDE_TYPE_LAY_DOWN_ROLLER_COASTER_ALT
0, // RIDE_TYPE_REVERSER_ROLLER_COASTER

View File

@@ -310,6 +310,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_flying_rc(int trackType, int direc
TRACK_PAINT_FUNCTION get_track_paint_function_virginia_reel(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_splash_boats(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_mini_helicopters(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_lay_down_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_mini_golf(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_roto_drop(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_flying_saucers(int trackType, int direction);