Skip to content

Commit

Permalink
Update lcd.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylaina committed Jan 28, 2019
1 parent c8dce5e commit fa446f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lcd.c
Expand Up @@ -436,7 +436,7 @@ void lcd_drawBitmap(uint8_t x, uint8_t y, const uint8_t *picture, uint8_t width,
if(pgm_read_byte(picture + j * byteWidth + i / 8) & (128 >> (i & 7))){
lcd_drawPixel(x+i, y+j, color);
} else {
lcd_drawPixel(x+i, y+j, color);
lcd_drawPixel(x+i, y+j, !color);
}
}
}
Expand Down

0 comments on commit fa446f6

Please sign in to comment.