Add pixels for X on character

This commit is contained in:
MDavid
2022-05-14 13:56:41 +02:00
parent cdba24d69b
commit aadea78853
2 changed files with 13 additions and 5 deletions

View File

@@ -20,6 +20,6 @@ public class Pixel {
public Boolean ProcessBitmap(Bitmap bmp) {
Color tempPixel = bmp.GetPixel(x, y);
return tempPixel.R >= R && tempPixel.B >= B && tempPixel.G >= G;
return tempPixel.R == R && tempPixel.B == B && tempPixel.G == G;
}
}