forked from len0rd/rockbox
Shorten voicefont progress output a bit.
Change-Id: I07a85af75acd9b73aabff80feb5226abce83b313
This commit is contained in:
parent
9ca9b657e4
commit
905f920dc9
1 changed files with 6 additions and 6 deletions
|
|
@ -146,7 +146,7 @@ int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output)
|
|||
continue;
|
||||
}
|
||||
}
|
||||
printf("processing %s\n", mp3filename);
|
||||
printf("processing %s", mp3filename);
|
||||
|
||||
size[i] = fread(buffer, 1, sizeof(buffer), pMp3File);
|
||||
fclose(pMp3File);
|
||||
|
|
@ -154,7 +154,7 @@ int voicefont(FILE* voicefontids,int targetnum,char* filedir, FILE* output)
|
|||
BitswapAudio(buffer, buffer, size[i]);
|
||||
fwrite(buffer, 1, size[i], output);
|
||||
|
||||
printf("%d %s %d\n", i, names[i], size[i]); /* debug */
|
||||
printf(": %d %s %d\n", i, names[i], size[i]); /* debug */
|
||||
} /* for i */
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue