From 2e90f7f8b975d380c3d544995ef6db9d6c8a86d8 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 18 Apr 2010 14:56:05 +0000 Subject: (svn r19670) -Codechange: Add CeilDiv() and RoundDiv() to simplify integer divisions with rounding. --- src/terraform_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/terraform_gui.cpp') diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index 60e505045..019dd5616 100644 --- a/src/terraform_gui.cpp +++ b/src/terraform_gui.cpp @@ -649,8 +649,8 @@ struct ScenarioEditorLandscapeGenerationWindow : Window { { if (widget != ETTW_DOTS) return; - int center_x = (r.left + r.right + 1) / 2; - int center_y = (r.top + r.bottom + 1) / 2; + int center_x = RoundDiv(r.left + r.right, 2); + int center_y = RoundDiv(r.top + r.bottom, 2); int n = _terraform_size * _terraform_size; const int8 *coords = &_multi_terraform_coords[0][0]; -- cgit v1.2.3-54-g00ecf