mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-14 06:43:15 +00:00
fixup parameter order in 'number of mines'
This commit is contained in:
parent
0929128171
commit
ac302500e0
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user