Setup log flume paint function

This commit is contained in:
Ted John 2016-09-25 12:46:15 +01:00
parent 89ef96b281
commit 112c3d22d2
3 changed files with 17 additions and 1 deletions

View File

@ -6264,7 +6264,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_maze, // RIDE_TYPE_MAZE
get_track_paint_function_spiral_slide, // RIDE_TYPE_SPIRAL_SLIDE
get_track_paint_function_go_karts, // RIDE_TYPE_GO_KARTS
0, // RIDE_TYPE_LOG_FLUME
get_track_paint_function_log_flume, // RIDE_TYPE_LOG_FLUME
get_track_paint_function_river_rapids, // RIDE_TYPE_RIVER_RAPIDS
get_track_paint_function_dodgems, // RIDE_TYPE_DODGEMS
get_track_paint_function_pirate_ship, // RIDE_TYPE_PIRATE_SHIP

View File

@ -256,6 +256,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_chairlift(int trackType, int direc
TRACK_PAINT_FUNCTION get_track_paint_function_maze(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_spiral_slide(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_go_karts(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_log_flume(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_river_rapids(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_dodgems(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_pirate_ship(int trackType, int direction);

View File

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