From 012ebbf9406e638e47ed1dfa624ac2c1cb0de12d Mon Sep 17 00:00:00 2001 From: Barinade Date: Thu, 26 Dec 2024 15:14:59 -0600 Subject: [PATCH] reduce the aggressivetivityness on parallelizing etar generation --- src/Etterna/Models/Misc/TimingData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Etterna/Models/Misc/TimingData.cpp b/src/Etterna/Models/Misc/TimingData.cpp index fac2e640a6..c32545f83c 100644 --- a/src/Etterna/Models/Misc/TimingData.cpp +++ b/src/Etterna/Models/Misc/TimingData.cpp @@ -1455,7 +1455,7 @@ TimingData::BuildAndGetEtar(int lastrow) std::iota(ElapsedTimesAtAllRows.begin(), ElapsedTimesAtAllRows.end(), 0); // just dont parallelize at all if it probably wont help anyways - if (lastrow < 128) { + if (lastrow < 100000) { for (auto r = 0; r <= lastrow; ++r) { ElapsedTimesAtAllRows[r] = GetElapsedTimeFromBeatNoOffset(NoteRowToBeat(r));