From 60aa97671d0305be184fa2bf4ec985fce9993813 Mon Sep 17 00:00:00 2001 From: Matteias Collet Date: Thu, 28 May 2020 11:27:05 +0200 Subject: [PATCH] fix missing call --- Bonobo/XkcdService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bonobo/XkcdService.cs b/Bonobo/XkcdService.cs index d7f0637..4440897 100644 --- a/Bonobo/XkcdService.cs +++ b/Bonobo/XkcdService.cs @@ -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("");