Description:
Remove unneeded await modifier.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r643:c2d477c96c44 -

@@ -76,7 +76,7
76 }
76 }
77 }
77 }
78
78
79 public static async void DrawLinearLabels(ImFontPtr font, ImDrawListPtr draw_list, Num.Vector2 domain, Num.Vector2 range, bool vertical, int labels, Num.Vector2 starting_position) {
79 public static void DrawLinearLabels(ImFontPtr font, ImDrawListPtr draw_list, Num.Vector2 domain, Num.Vector2 range, bool vertical, int labels, Num.Vector2 starting_position) {
80 //We need to increment by one in order to cover the entire range.
80 //We need to increment by one in order to cover the entire range.
81 //For example, if our range is 0 - 100, and we want 11 ticks, 100 / 10 gives us a spacing o 10
81 //For example, if our range is 0 - 100, and we want 11 ticks, 100 / 10 gives us a spacing o 10
82 //So our 11 labels become 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100.
82 //So our 11 labels become 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100.
You need to be logged in to leave comments. Login now