1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 09:14:58 +01:00

Fix #5741: Disappearing land/construction rights indicators

This commit is contained in:
Martin Müller
2017-10-15 15:25:01 +02:00
committed by Michael Steenbeek
parent e393ff1f22
commit ffdc854c1f
2 changed files with 2 additions and 3 deletions

View File

@@ -162,7 +162,6 @@ static void window_land_rights_mouseup(rct_window *w, rct_widgetindex widgetInde
{
tool_set(w, WIDX_BUY_LAND_RIGHTS, TOOL_UP_ARROW);
_landRightsMode = LAND_RIGHTS_MODE_BUY_LAND;
hide_construction_rights();
show_land_rights();
window_invalidate(w);
}
@@ -172,7 +171,6 @@ static void window_land_rights_mouseup(rct_window *w, rct_widgetindex widgetInde
{
tool_set(w, WIDX_BUY_CONSTRUCTION_RIGHTS, TOOL_UP_ARROW);
_landRightsMode = LAND_RIGHTS_MODE_BUY_CONSTRUCTION_RIGHTS;
hide_land_rights();
show_construction_rights();
window_invalidate(w);
}