File diff r10854:9dc46af240e5 → r10855:5a3c2f38f98e
src/landscape.cpp
Show inline comments
 
@@ -681,27 +681,27 @@ void RunTileLoop()
 
		tile = (tile + MapSizeX()) & TILELOOP_ASSERTMASK;
 
	}
 
	_cur_tileloop_tile = tile;
 
}
 

	
 
void InitializeLandscape()
 
{
 
	uint maxx = MapMaxX();
 
	uint maxy = MapMaxY();
 
	uint sizex = MapSizeX();
 

	
 
	uint y;
 
	for (y = 0; y < maxy; y++) {
 
	for (y = _settings_game.construction.freeform_edges ? 1 : 0; y < maxy; y++) {
 
		uint x;
 
		for (x = 0; x < maxx; x++) {
 
		for (x = _settings_game.construction.freeform_edges ? 1 : 0; x < maxx; x++) {
 
			MakeClear(sizex * y + x, CLEAR_GRASS, 3);
 
			SetTileHeight(sizex * y + x, 0);
 
			SetTropicZone(sizex * y + x, TROPICZONE_NORMAL);
 
			ClearBridgeMiddle(sizex * y + x);
 
		}
 
		MakeVoid(sizex * y + x);
 
	}
 
	for (uint x = 0; x < sizex; x++) MakeVoid(sizex * y + x);
 
}
 

	
 
static const byte _genterrain_tbl_1[5] = { 10, 22, 33, 37, 4  };
 
static const byte _genterrain_tbl_2[5] = {  0,  0,  0,  0, 33 };