diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-05-07 20:02:54 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-05-07 20:02:54 -0300 |
commit | c99813dc38cc79b37529cdd98dc2bc2c3ff69edc (patch) | |
tree | 99ea11d3829bf296ea23941a83ebc61158028087 /tools/pck/pck_packer.cpp | |
parent | 7156aff16041ea56ff1f3aea2a622c130bcca7a9 (diff) | |
parent | ac9263c680076eed36887a681cb59fdcce6c6f73 (diff) |
Merge pull request #1826 from eehrich/master
Reviewed compiler warnings: fixed some bugs and formal stuff. (2nd try)
Diffstat (limited to 'tools/pck/pck_packer.cpp')
-rw-r--r-- | tools/pck/pck_packer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pck/pck_packer.cpp b/tools/pck/pck_packer.cpp index 09611b3a93..d398fefb5f 100644 --- a/tools/pck/pck_packer.cpp +++ b/tools/pck/pck_packer.cpp @@ -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); }; }; |