fixed issue with format string in PCKPacker::flush
This commit is contained in:
parent
edce27fc03
commit
d177e0f64a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue