mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-21 23:03:04 +01:00
Fix #9955 Allow resizing of map in pause mode
Prevents infinite loop by forcing BuildInPauseMode on for the duration of the map_remove_out_of_range_elements() call.
This commit is contained in:
@@ -1541,6 +1541,8 @@ void map_restore_provisional_elements()
|
|||||||
void map_remove_out_of_range_elements()
|
void map_remove_out_of_range_elements()
|
||||||
{
|
{
|
||||||
int32_t mapMaxXY = gMapSizeMaxXY;
|
int32_t mapMaxXY = gMapSizeMaxXY;
|
||||||
|
//#9955 ensure that we can remove elements
|
||||||
|
bool buildState = gCheatsBuildInPauseMode;
|
||||||
|
|
||||||
for (int32_t y = 0; y < (MAXIMUM_MAP_SIZE_TECHNICAL * 32); y += 32)
|
for (int32_t y = 0; y < (MAXIMUM_MAP_SIZE_TECHNICAL * 32); y += 32)
|
||||||
{
|
{
|
||||||
@@ -1559,6 +1561,8 @@ void map_remove_out_of_range_elements()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//#9955 reset cheat state
|
||||||
|
CheatsSet(CheatType::BuildInPauseMode, buildState);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void map_extend_boundary_surface_extend_tile(const SurfaceElement& sourceTile, SurfaceElement& destTile)
|
static void map_extend_boundary_surface_extend_tile(const SurfaceElement& sourceTile, SurfaceElement& destTile)
|
||||||
|
|||||||
Reference in New Issue
Block a user