mirror of
https://github.com/ppy/osu.git
synced 2026-05-19 05:49:52 +08:00
Revert "Adjust bass invalid data threshold"
This reverts commit ddce11fbc8.
This commit is contained in:
@@ -161,7 +161,7 @@ namespace osu.Game.Rulesets.UI
|
||||
//
|
||||
// In testing this triggers *very* rarely even when set to super low values (10 ms). The cases we're worried about involve multi-second jumps.
|
||||
// A difference of more than 500 ms seems like a sane number we should never exceed.
|
||||
if (!allowReferenceClockSeeks && Math.Abs(proposedTime - referenceClock.CurrentTime) > 1500)
|
||||
if (!allowReferenceClockSeeks && Math.Abs(proposedTime - referenceClock.CurrentTime) > 500)
|
||||
{
|
||||
if (invalidBassTimeLogCount < 10)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user