From e827e9952e45fb2d512a268fff112c044bd5fcb3 Mon Sep 17 00:00:00 2001 From: darkademic <41052878+darkademic@users.noreply.github.com> Date: Tue, 2 Aug 2022 19:32:41 +0100 Subject: [PATCH] Additional performance graph colors so same color is not used multiple times. --- OpenRA.Game/Support/PerfHistory.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/OpenRA.Game/Support/PerfHistory.cs b/OpenRA.Game/Support/PerfHistory.cs index 47847f3bec..6b5314e059 100644 --- a/OpenRA.Game/Support/PerfHistory.cs +++ b/OpenRA.Game/Support/PerfHistory.cs @@ -20,8 +20,10 @@ namespace OpenRA.Support Color.Red, Color.Green, Color.Orange, Color.Yellow, Color.Fuchsia, Color.Lime, - Color.LightBlue, Color.Blue, - Color.White, Color.Teal + Color.Cyan, Color.Blue, + Color.White, Color.Teal, + Color.Pink, Color.MediumPurple, + Color.Olive, Color.CornflowerBlue }; static int nextColor;