Skip to content

Commit

Permalink
fix missing call
Browse files Browse the repository at this point in the history
  • Loading branch information
BitPatty committed May 28, 2020
1 parent 40d9514 commit 60aa976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bonobo/XkcdService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static void PrintImageAsAscii(Bitmap image)
{
Color oc = image.GetPixel(j, i);
int grayScale = (int)((oc.R * 0.3) + (oc.G * 0.59) + (oc.B * 0.11));
Console.Write(grayScale);
Console.Write(GetShade(grayScale));
}

Console.WriteLine("");
Expand Down

0 comments on commit 60aa976

Please sign in to comment.