1
0
Fork 0
forked from len0rd/rockbox

Shorten voicefont progress output a bit.

Change-Id: I07a85af75acd9b73aabff80feb5226abce83b313
This commit is contained in:
Dominik Riebeling 2012-04-03 23:27:13 +02:00
parent 9ca9b657e4
commit 905f920dc9

View file

@ -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 */