Skip to content

Commit

Permalink
Swap colors used for creating bitmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
meribold committed Oct 13, 2015
1 parent e9f5735 commit 80d1d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/create_bitmaps.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void createBitmaps(std::string name)
{
int pixelNum = (SCALE_FACTOR * SCALE_FACTOR * 24 * (23 - rowNum) +
SCALE_FACTOR * colNum + 24 * SCALE_FACTOR * i) / 8 + j;
pixelArray[pixelNum] = set ? 0xff : 0x00;
pixelArray[pixelNum] = set ? 0x00 : 0xff;
}
}
}
Expand Down

0 comments on commit 80d1d00

Please sign in to comment.