From ac302500e0c3428f27a0c826033629ad3a85c633 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 4 Apr 2019 17:14:46 +0200 Subject: [PATCH] fixup parameter order in 'number of mines' --- geom-exp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geom-exp.cpp b/geom-exp.cpp index 03c514b3..1ae09cd8 100644 --- a/geom-exp.cpp +++ b/geom-exp.cpp @@ -681,7 +681,7 @@ void showEuclideanMenu() { if(specialland == laMinefield && bounded) { dialog::addSelItem(XLAT("number of mines"), its(bounded_mine_quantity), 'm'); dialog::add_action([] { - dialog::editNumber(bounded_mine_quantity, 0, bounded_mine_max, (bounded_mine_max+5)/10, 1, + dialog::editNumber(bounded_mine_quantity, 0, bounded_mine_max, 1, (bounded_mine_max+5)/10, XLAT("number of mines"), ""); dialog::reaction = [] { if(bounded_mine_quantity < 0) bounded_mine_quantity = 0;