mr.Spinner: fix max paddle value.

This commit is contained in:
sorgelig 2020-02-24 00:56:52 +08:00
parent cedc306344
commit b75acc4de2
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ void drv_proc(int8_t idx)
if(diff == 3)
{
drvpos[idx] += 10;
if(sp_clamp[idx] < sp_max-1) sp_clamp[idx]++;
if(sp_clamp[idx] < sp_max) sp_clamp[idx]++;
}
if(diff == 1)
{