mirror of
https://github.com/godotengine/godot.git
synced 2024-11-28 23:22:38 +00:00
fixed issue with format string in PCKPacker::flush
This commit is contained in:
parent
edce27fc03
commit
d177e0f64a
@ -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 New Issue
Block a user