app: small fix in gimpbrushcore-kernels.h

This commit is contained in:
Ell 2019-02-06 15:12:26 -05:00
parent 8ef1113dee
commit cbe40000f5
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ struct Kernel<guchar>
static constexpr value_type
round (accum_type x)
{
return (x + 127) / 256;
return (x + 128) / 256;
}
};