diff --git a/Ryujinx.Profiler/UI/ProfileWindowGraph.cs b/Ryujinx.Profiler/UI/ProfileWindowGraph.cs index c1a41618e9..9e1a13caaf 100644 --- a/Ryujinx.Profiler/UI/ProfileWindowGraph.cs +++ b/Ryujinx.Profiler/UI/ProfileWindowGraph.cs @@ -46,13 +46,13 @@ namespace Ryujinx.Profiler.UI GL.Vertex2(x, Height); } GL.End(); - - int furthest = 0; // Draw bars GL.Begin(PrimitiveType.Triangles); foreach (var entry in _sortedProfileData) { + int furthest = 0; + GL.Color3(Color.Green); foreach (Timestamp timestamp in entry.Value.GetAllTimestamps()) {