fixed issue with format string in PCKPacker::flush

This commit is contained in:
ehriche 2015-05-06 00:46:02 +02:00
parent edce27fc03
commit d177e0f64a

View File

@ -136,7 +136,7 @@ Error PCKPacker::flush(bool p_verbose) {
count += 1;
if (p_verbose) {
if (count % 100 == 0) {
printf("%i/%i (%.2f\%)\r", count, files.size(), float(count) / files.size() * 100);
printf("%i/%i (%.2f)\r", count, files.size(), float(count) / files.size() * 100);
fflush(stdout);
};
};