From f0dd452fa3edf8828e4e9de98fb2a7f3c17597bd Mon Sep 17 00:00:00 2001 From: Marijn van der Werf Date: Thu, 15 Sep 2016 19:34:24 +0200 Subject: [PATCH] Fix Maze --- src/ride/gentle/maze.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ride/gentle/maze.c b/src/ride/gentle/maze.c index 73211c5f62..52b05ed06e 100644 --- a/src/ride/gentle/maze.c +++ b/src/ride/gentle/maze.c @@ -59,7 +59,7 @@ static void maze_paint_setup(uint8 rideIndex, uint8 trackSequence, uint8 directi int image_id = SPR_TERRAIN_DIRT | gTrackColours[SCHEME_MISC]; sub_98196C(image_id, 0, 0, 32, 32, 0, height, rotation); - wooden_a_supports_paint_setup(direction & 1, 0, height, gTrackColours[SCHEME_3], NULL); + wooden_a_supports_paint_setup((rotation & 1) ? 0 : 1, 0, height, gTrackColours[SCHEME_3], NULL); paint_util_set_segment_support_height(SEGMENTS_ALL & ~SEGMENT_C4, 0xFFFF, 0);