1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Setup wooden roller coaster paint function

This commit is contained in:
Ted John
2016-10-06 12:11:23 +01:00
parent 6f95ba4ae5
commit da80205933
3 changed files with 19 additions and 1 deletions

View File

@@ -13,3 +13,20 @@
* A full copy of the GNU General Public License can be found in licence.txt
*****************************************************************************/
#pragma endregion
#include "../../drawing/drawing.h"
#include "../../interface/viewport.h"
#include "../../paint/map_element/map_element.h"
#include "../../paint/paint.h"
#include "../../paint/supports.h"
#include "../../sprites.h"
#include "../../world/map.h"
#include "../../world/sprite.h"
#include "../ride_data.h"
#include "../track_data.h"
#include "../track_paint.h"
TRACK_PAINT_FUNCTION get_track_paint_function_wooden_rc(int trackType, int direction)
{
return NULL;
}

View File

@@ -6293,7 +6293,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_circus_show, // RIDE_TYPE_CIRCUS_SHOW
get_track_paint_function_ghost_train, // RIDE_TYPE_GHOST_TRAIN
get_track_paint_function_twister_rc, // RIDE_TYPE_TWISTER_ROLLER_COASTER
0, // RIDE_TYPE_WOODEN_ROLLER_COASTER
get_track_paint_function_wooden_rc, // RIDE_TYPE_WOODEN_ROLLER_COASTER
get_track_paint_function_side_friction_rc, // RIDE_TYPE_SIDE_FRICTION_ROLLER_COASTER
get_track_paint_function_wild_mouse, // RIDE_TYPE_WILD_MOUSE
get_track_paint_function_multi_dimension_rc, // RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER

View File

@@ -327,6 +327,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_circus_show(int trackType, int dir
TRACK_PAINT_FUNCTION get_track_paint_function_ghost_train(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_twister_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_side_friction_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_wooden_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_wild_mouse(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_multi_dimension_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_flying_rc(int trackType, int direction);