1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-06 21:02:59 +08:00

Avoid double call to ProcessFrame

This commit is contained in:
Dean Herbert 2022-09-09 14:35:47 +09:00
parent 64cf6b9014
commit d6748d6921

View File

@ -131,7 +131,7 @@ namespace osu.Game.Beatmaps
// Rather than trying to get around this by fixing the framework clock stack, let's work around it for now. // Rather than trying to get around this by fixing the framework clock stack, let's work around it for now.
Seek(Source.CurrentTime); Seek(Source.CurrentTime);
} }
else
finalClockSource.ProcessFrame(); finalClockSource.ProcessFrame();
} }