Skip to content

Commit

Permalink
Fixed compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
istvan-v committed Dec 19, 2016
1 parent 43a9752 commit 70aff31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/epimgconv/src/imgwrite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ namespace Ep128ImgConv {
buf.push_back((unsigned char) (width >> 8)); // width MSB
buf.push_back((unsigned char) (height & 0xFFU)); // height LSB
buf.push_back((unsigned char) (height >> 8)); // height MSB
buf.push_back((imgData | (imgData << 1)) & 0xAA); // border color
buf.push_back((imgData[9] | (imgData[9] << 1)) & 0xAA); // border color
buf.push_back(0x00); // unused / reserved byte
buf.push_back(0x00); // compressed palette data size LSB
buf.push_back(0x00); // compressed palette data size MSB
Expand Down

0 comments on commit 70aff31

Please sign in to comment.