Make progress bar update more often during downloads

This commit is contained in:
Huntereb 2019-10-26 16:16:38 -04:00
parent 3c551c4e98
commit e198b2daec

View file

@ -78,7 +78,7 @@ namespace tin::install::nsp
thrd_create(&curlThread, CurlStreamFunc, &args);
thrd_create(&writeThread, PlaceholderWriteFunc, &args);
u64 freq = armGetSystemTickFreq();
u64 freq = armGetSystemTickFreq() / 2;
u64 startTime = armGetSystemTick();
size_t startSizeBuffered = 0;
double speed = 0.0;