From 05867d732f33d3dfe1ff757719099ddecb03786a Mon Sep 17 00:00:00 2001 From: Huntereb Date: Tue, 5 Nov 2019 19:45:31 -0500 Subject: [PATCH] Update net installs more often --- source/install/http_nsp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/install/http_nsp.cpp b/source/install/http_nsp.cpp index 03b82be..1ea6d64 100755 --- a/source/install/http_nsp.cpp +++ b/source/install/http_nsp.cpp @@ -112,7 +112,7 @@ namespace tin::install::nsp { u64 newTime = armGetSystemTick(); - if (newTime - startTime >= freq) + if (newTime - startTime >= freq * 0.5) { size_t newSizeBuffered = bufferedPlaceholderWriter.GetSizeBuffered(); double mbBuffered = (newSizeBuffered / 1000000.0) - (startSizeBuffered / 1000000.0);