change larger marker size

This commit is contained in:
Dawid Wysokiński 2020-12-30 16:55:05 +01:00
parent e4f2a95161
commit 86ffb35e09
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func Generate(cfg Config) error {
for _, village := range m.Villages {
limit := 1
if m.Larger {
limit = 3
limit = 2
}
rect := image.Rect(village.X-limit, village.Y-limit, village.X+limit, village.Y+limit)
draw.Draw(img, rect, &image.Uniform{parsedColor}, image.Point{}, draw.Src)