From e5bc7e8998efd7751d333ebcae4000f365301397 Mon Sep 17 00:00:00 2001 From: Duncan Frost Date: Wed, 25 Feb 2015 21:21:08 +0000 Subject: [PATCH] Fix transparent fences --- src/windows/scenery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/scenery.c b/src/windows/scenery.c index dcb02b4bf2..632b7d5fa4 100644 --- a/src/windows/scenery.c +++ b/src/windows/scenery.c @@ -1099,7 +1099,7 @@ void window_scenery_scrollpaint() gfx_draw_sprite(clipdpi, imageId, 0x2F, (sceneryEntry->wall.height * 2) + 0x32, tertiaryColour); - imageId = (sceneryEntry->image + 0x40000006) | (window_scenery_primary_colour << 19); + imageId = (sceneryEntry->image + 0x40000006) | ((window_scenery_primary_colour + 0x70) << 19); gfx_draw_sprite(clipdpi, imageId, 0x2F, (sceneryEntry->wall.height * 2) + 0x32, tertiaryColour); }