# HG changeset patch # User Alys Brooks # Date 2022-10-11 05:08:57 # Node ID c2d477c96c4438b5a8472bea5debe345a6ab3512 # Parent af2d62a85b16186f9fe7319acae899eed9fad60f Remove unneeded await modifier. diff --git a/isometric-park-fna/UI/Graph.cs b/isometric-park-fna/UI/Graph.cs --- a/isometric-park-fna/UI/Graph.cs +++ b/isometric-park-fna/UI/Graph.cs @@ -76,7 +76,7 @@ } } - public static async void DrawLinearLabels(ImFontPtr font, ImDrawListPtr draw_list, Num.Vector2 domain, Num.Vector2 range, bool vertical, int labels, Num.Vector2 starting_position) { + public static void DrawLinearLabels(ImFontPtr font, ImDrawListPtr draw_list, Num.Vector2 domain, Num.Vector2 range, bool vertical, int labels, Num.Vector2 starting_position) { //We need to increment by one in order to cover the entire range. //For example, if our range is 0 - 100, and we want 11 ticks, 100 / 10 gives us a spacing o 10 //So our 11 labels become 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100.