Add splash boats paint function

This commit is contained in:
Ted John 2016-09-24 16:02:08 +01:00
parent ae062dea69
commit 4b453a3160
3 changed files with 11 additions and 2 deletions

View File

@ -6301,7 +6301,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
0, // RIDE_TYPE_FLYING_ROLLER_COASTER
0, // RIDE_TYPE_FLYING_ROLLER_COASTER_ALT
get_track_paint_function_virginia_reel, // RIDE_TYPE_VIRGINIA_REEL
0, // RIDE_TYPE_SPLASH_BOATS
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
0, // RIDE_TYPE_SUSPENDED_MONORAIL

View File

@ -280,6 +280,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_haunted_house(int trackType, int d
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_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_mini_golf(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_roto_drop(int trackType, int direction);

View File

@ -16,10 +16,18 @@
#include "../../config.h"
#include "../../interface/viewport.h"
#include "../../world/sprite.h"
#include "../../paint/paint.h"
#include "../../paint/supports.h"
#include "../../world/sprite.h"
#include "../track.h"
#include "../track_paint.h"
#include "../vehicle_paint.h"
TRACK_PAINT_FUNCTION get_track_paint_function_splash_boats(int trackType, int direction)
{
return NULL;
}
#ifndef NO_VEHICLES
/**
*