From 7639e096d865cb044186df0fc4ca4d085b4e9d5c Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Wed, 23 Aug 2017 15:30:17 +0900 Subject: [PATCH] No longer flip legacy replay mouse positions. --- osu.Game/Rulesets/Scoring/ScoreStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Rulesets/Scoring/ScoreStore.cs b/osu.Game/Rulesets/Scoring/ScoreStore.cs index c6421522b4..c06d31e38f 100644 --- a/osu.Game/Rulesets/Scoring/ScoreStore.cs +++ b/osu.Game/Rulesets/Scoring/ScoreStore.cs @@ -137,7 +137,7 @@ namespace osu.Game.Rulesets.Scoring frames.Add(new ReplayFrame( lastTime, float.Parse(split[1]), - 384 - float.Parse(split[2]), + float.Parse(split[2]), (ReplayButtonState)int.Parse(split[3]) )); }