limit the progressBar update rate to 5 per second. This speeds up loading of small bin files.

This commit is contained in:
phdussud
2020-12-26 09:50:48 -08:00
parent 6fefebd02c
commit 11baca9337
2 changed files with 12 additions and 5 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
class ProgressBar {
public:
ProgressBar(std::string mess, int maxValue, int progressLen);
void display(int value);
void display(int value, char force = 0);
void done();
void fail();
private: