Fixed typo in debug message

fonts_experiment
Valeriy Mironov 2017-12-15 01:50:38 +02:00
parent ee9660dc5a
commit c28196305f
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ namespace Resources.Image
if (_bitsPerPixel > 4)
throw new ArgumentException(
$"The image has {_bitsPerPixel} bit/pixel and can't be packed for using on the watches. Looks like dithering works wincorrectly on the image."
$"The image has {_bitsPerPixel} bit/pixel and can't be packed for using on the watches. Looks like dithering works incorrectly on the image."
);
_rowLengthInBytes = (ushort) Math.Ceiling(_width * _bitsPerPixel / 8.0);