Closed inexorabletash closed 6 years ago
The docs indicate:
The Volume Size may be given in KB or in MB. Any size between 143KB and 32MB is valid (143KB, 800KB, 1600KB, 32MB, ...).
... but specifying 143KB results in:
Error : Invalid volume size : '143KB'.
The check in Main.c reads:
Main.c
if(param->new_volume_size_kb <= 143 || param->new_volume_size_kb > 32768) param->new_volume_size_kb = 0;
Should that be < 143 ?
< 143
It appears so! Nice catch. I'll fix this one up and make a release :oncoming_police_car:
Confirmed, thanks!
@inexorabletash I'll make some binaries after meetings 🚔
The docs indicate:
... but specifying 143KB results in:
The check in
Main.c
reads:Should that be
< 143
?