mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 23:04:36 +01:00
Change format to use 5-wide index
This commit is contained in:
committed by
Michael Steenbeek
parent
39bb4bcc41
commit
0a9ee59152
@@ -187,7 +187,7 @@ private:
|
||||
size_t i = 1;
|
||||
for (auto filePath : scanResult.Files)
|
||||
{
|
||||
Console::WriteFormat("File %4d of %d, done %3d%%\r", i, scanResult.Files.size(), i * 100 / scanResult.Files.size());
|
||||
Console::WriteFormat("File %5d of %d, done %3d%%\r", i, scanResult.Files.size(), i * 100 / scanResult.Files.size());
|
||||
i++;
|
||||
log_verbose("FileIndex:Indexing '%s'", filePath.c_str());
|
||||
auto item = Create(filePath);
|
||||
|
||||
Reference in New Issue
Block a user