mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-17 03:53:07 +01:00
Add splash boats paint function
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user