1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 06:27:18 +08:00
This commit is contained in:
smoogipoo 2018-01-17 20:15:17 +09:00
parent da22b3ec49
commit 379688e2f2

View File

@ -145,6 +145,8 @@ namespace osu.Game.Rulesets.Scoring
var diff = float.Parse(split[0]);
lastTime += diff;
// Todo: At some point we probably want to rewind and play back the negative-time frames
// but for now we'll achieve equal playback to stable by skipping negative frames
if (diff < 0)
continue;