Minor progress callback tweak

This commit is contained in:
Jack Andersen 2017-05-21 23:18:52 -04:00
parent dd20c1d255
commit bc38896a2b
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ int main(int argc, char* argv[])
auto progFunc = [&](float prog, const nod::SystemString& name, size_t bytes)
{
nod::Printf(_S("\r "));
nod::Printf(_S("\r "));
if (bytes != -1)
nod::Printf(_S("\r%g%% %s %" PRISize " B"), prog * 100.f, name.c_str(), bytes);
else