automated commit by check50 [check50=True]

This commit is contained in:
kukemuna 2024-03-08 13:28:59 +02:00
parent dcd83c0cd7
commit e12dfebf58
1 changed files with 3 additions and 3 deletions

View File

@ -109,9 +109,9 @@ void blur(int height, int width, RGBTRIPLE image[height][width])
count++;
}
}
image[i][j].rgbtRed = round(sumRed / count);
image[i][j].rgbtGreen = round(sumGreen / count);
image[i][j].rgbtBlue = round(sumBlue / count);
image[i][j].rgbtRed = round(sumRed / (float) count);
image[i][j].rgbtGreen = round(sumGreen / (float) count);
image[i][j].rgbtBlue = round(sumBlue / (float) count);
}
}
return;