Rename gUnk9E2E28 to gMapLandRightsUpdateSuccess

This commit is contained in:
wolfreak99 2017-06-08 16:28:39 -04:00 committed by Michael Steenbeek
parent 60a633e79b
commit 12c84d8190
3 changed files with 5 additions and 6 deletions

View File

@ -127,7 +127,7 @@ uint16 gLandRemainingConstructionSales;
rct_xyz16 gCommandPosition;
uint8 gUnk9E2E28;
bool gMapLandRightsUpdateSuccess;
static void map_update_grass_length(sint32 x, sint32 y, rct_map_element *mapElement);
static void map_set_grass_length(sint32 x, sint32 y, rct_map_element *mapElement, sint32 length);
@ -1805,12 +1805,11 @@ static money32 map_set_land_ownership(uint8 flags, sint16 x1, sint16 y1, sint16
y1 = clamp(32, y1, gMapSizeUnits - 32);
x2 = clamp(32, x2, gMapSizeUnits - 32);
y2 = clamp(32, y2, gMapSizeUnits - 32);
gUnk9E2E28 = 0;
gMapLandRightsUpdateSuccess = false;
map_buy_land_rights(x1, y1, x2, y2, 6, flags | (newOwnership << 8));
if (!(gUnk9E2E28 & 1)) {
if (!gMapLandRightsUpdateSuccess)
return 0;
}
sint16 x = clamp(32, x1, gMapSizeUnits - 32);
sint16 y = clamp(32, y1, gMapSizeUnits - 32);

View File

@ -410,7 +410,7 @@ extern uint16 gLandRemainingConstructionSales;
extern rct_xyz16 gCommandPosition;
extern uint8 gUnk9E2E28;
extern bool gMapLandRightsUpdateSuccess;
void map_init(sint32 size);
void map_count_remaining_land_rights();

View File

@ -977,7 +977,7 @@ static money32 map_buy_land_rights_for_tile(sint32 x, sint32 y, sint32 setting,
surfaceElement->properties.surface.ownership &= 0x0F;
surfaceElement->properties.surface.ownership |= newOwnership;
update_park_fences_around_tile(x, y);
gUnk9E2E28 |= 1;
gMapLandRightsUpdateSuccess = true;
return 0;
}
}