EWS: Allow larger values

This commit is contained in:
Fabian Kurz 2019-11-28 18:39:33 +01:00
parent ea92ff651b
commit 5b4dd97daa
1 changed files with 1 additions and 1 deletions

View File

@ -1067,7 +1067,7 @@ void command (char * cmd, CWP *cw) {
}
break;
case 'W':
if (i >= 0 && i <= 10) {
if (i >= 0 && i <= 40) {
cw->ews = i;
init_cw(cw);
}