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

Setup wild mouse paint function

This commit is contained in:
Ted John
2016-10-04 18:21:55 +01:00
parent 71d0861be1
commit 497c99a2b8
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_wild_mouse(int trackType, int direction)
{
return NULL;
}

View File

@@ -6295,7 +6295,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
0, // RIDE_TYPE_TWISTER_ROLLER_COASTER
0, // RIDE_TYPE_WOODEN_ROLLER_COASTER
0, // RIDE_TYPE_SIDE_FRICTION_ROLLER_COASTER
0, // RIDE_TYPE_WILD_MOUSE
get_track_paint_function_wild_mouse, // RIDE_TYPE_WILD_MOUSE
0, // RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER
0, // RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER_ALT
0, // RIDE_TYPE_FLYING_ROLLER_COASTER

View File

@@ -286,6 +286,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_twist(int trackType, int direction
TRACK_PAINT_FUNCTION get_track_paint_function_haunted_house(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_circus_show(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_ghost_train(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_wild_mouse(int trackType, int direction);
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);