Fixes for mbsetup

This commit is contained in:
Michiel Broek
2002-01-19 19:27:29 +00:00
parent 2bdbf7a494
commit bd953f7b3e
14 changed files with 41 additions and 13 deletions

View File

@@ -394,8 +394,10 @@ void EditNGroup(void)
if ((o - 20) >= 0)
o = o - 20;
if ((atoi(pick) >= 1) && (atoi(pick) <= records))
if ((atoi(pick) >= 1) && (atoi(pick) <= records)) {
EditNGrpRec(atoi(pick));
o = ((atoi(pick) - 1) / 20) * 20;
}
}
}