From 0816a5fdf513d85488803350239290a70549ab9a Mon Sep 17 00:00:00 2001 From: Duncan Frost Date: Tue, 28 Apr 2015 17:07:36 +0100 Subject: [PATCH] Fix footpath bit placement failing. Fixes #1025 --- src/windows/top_toolbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/top_toolbar.c b/src/windows/top_toolbar.c index b6c111e634..58fb52b411 100644 --- a/src/windows/top_toolbar.c +++ b/src/windows/top_toolbar.c @@ -1038,7 +1038,7 @@ void sub_6E1F34(sint16 x, sint16 y, uint16 selected_scenery, sint16* grid_x, sin return; } - *parameter_1 = 0 | map_element->properties.path.type & 0x7; + *parameter_1 = 0 | ((map_element->properties.path.type & 0x7) << 8); *parameter_2 = map_element->base_height | ((map_element->properties.path.type >> 4) << 8); if (map_element->type & 1){ *parameter_2 |= 0x8000;