File diff r24596:eddf98238034 → r24597:afde5721a3b6
src/terraform_gui.cpp
Show inline comments
 
@@ -409,13 +409,13 @@ static void CommonRaiseLowerBigLand(Tile
 
			/* Raise land */
 
			h = MAX_TILE_HEIGHT;
 
			TILE_AREA_LOOP(tile2, ta) {
 
				h = min(h, TileHeight(tile2));
 
				h = std::min(h, TileHeight(tile2));
 
			}
 
		} else {
 
			/* Lower land */
 
			h = 0;
 
			TILE_AREA_LOOP(tile2, ta) {
 
				h = max(h, TileHeight(tile2));
 
				h = std::max(h, TileHeight(tile2));
 
			}
 
		}
 

	
 
@@ -547,8 +547,8 @@ struct ScenarioEditorLandscapeGeneration
 
	{
 
		if (widget != WID_ETT_DOTS) return;
 

	
 
		size->width  = max<uint>(size->width,  ScaleGUITrad(59));
 
		size->height = max<uint>(size->height, ScaleGUITrad(31));
 
		size->width  = std::max<uint>(size->width,  ScaleGUITrad(59));
 
		size->height = std::max<uint>(size->height, ScaleGUITrad(31));
 
	}
 

	
 
	void DrawWidget(const Rect &r, int widget) const override