Fix the disk_write logic error (#3693)

This is indeed a logic error, but actually it does not take effect so it does not cause any install/update failure.
This commit is contained in:
longpanda
2026-07-24 12:25:35 +08:00
parent ac300d7464
commit 6dd3ed3ce3

View File

@@ -228,6 +228,7 @@ DRESULT disk_write (
return RES_OK; return RES_OK;
} }
buff += 512;
sector++; sector++;
count--; count--;
} }