Fix incorrect fuse uploading

This commit is contained in:
rhgndf 2023-11-21 16:33:31 +08:00
parent b5a7334d59
commit 8cbc013e68
1 changed files with 1 additions and 1 deletions

View File

@ -825,7 +825,7 @@ static char upload() {
printf("\e[?25h");
// send last unfinished fuse line
if ((i % 32 != 1) && fuseSet) {
if (fuseSet) {
strcat(buf, "\r");
#ifdef DEBUG_UPLOAD
printf("%s\n", buf);