From f42fba3afe4245c64ca369d566b8cf72f60aed55 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 28 Jan 2019 21:39:37 +0100 Subject: [PATCH] you can no longer set compass size < 0 --- config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.cpp b/config.cpp index 540447d6..9e4591fb 100644 --- a/config.cpp +++ b/config.cpp @@ -864,9 +864,9 @@ void showGraphConfig() { if(xuni == 'C') { dialog::editNumber(vid.mobilecompasssize, 0, 100, 10, 20, XLAT("compass size"), ""); - dialog::bound_low(0); // we need to check the moves dialog::reaction = checkmove; + dialog::bound_low(0); } #if CAP_FRAMELIMIT