Skip to content

Commit ba617ec

Browse files
committed
Add pixelate filter (-P flag)
2 parents a1588b4 + 200432a commit ba617ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helpers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ void oilpaint(int height, int width, RGBTRIPLE image[height][width]){
424424
free(copy);
425425
}
426426

427-
// Pixelate filte
427+
// Pixelate filter
428428
void pixelate(int height, int width, RGBTRIPLE image[height][width]){
429429
int blockSize = 8;
430430
if (width > 1000 || height > 1000) {

0 commit comments

Comments
 (0)