Skip to content

Commit

Permalink
fixed warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
rumkit committed Oct 7, 2016
1 parent 7976280 commit ab797de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pixie/PixelMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public PixelMapper(Bitmap bitmap, PixelSettings settings)
public List<byte[]> MapPixels()
{
if(_settings.SymbolWidth * _settings.SymbolHeight * _settings.BitsPerPixel % 8 != 0)
ConsoleLogger.WriteMessage("Number of bits per pixel is not a multiple of 8. Output values will be padded", MessageType.Warning);
ConsoleLogger.WriteMessage("Number of bits per symbol is not a multiple of 8. Output values will be padded", MessageType.Warning);

var symbols = new List<byte[]>();

Expand Down

0 comments on commit ab797de

Please sign in to comment.