From c03689b9279407dd6e5145ae8f48278f57f3622c Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 24 Jan 2019 16:02:31 +0900 Subject: [PATCH] Fix incorrect change direction --- PerformanceCalculator/Profile/ProfileProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PerformanceCalculator/Profile/ProfileProcessor.cs b/PerformanceCalculator/Profile/ProfileProcessor.cs index 17ce39c..b71146a 100644 --- a/PerformanceCalculator/Profile/ProfileProcessor.cs +++ b/PerformanceCalculator/Profile/ProfileProcessor.cs @@ -108,7 +108,7 @@ namespace PerformanceCalculator.Profile new Cell($"{item.LivePP:F1}") { Align = Align.Right }, new Cell($"{item.LocalPP:F1}") { Align = Align.Right }, new Cell($"{item.LocalPP - item.LivePP:F1}") { Align = Align.Right }, - new Cell($"{localOrdered.IndexOf(item) - liveOrdered.IndexOf(item)}") { Align = Align.Right }, + new Cell($"{liveOrdered.IndexOf(item) - localOrdered.IndexOf(item):+0;-0;-}") { Align = Align.Center }, }) } }