Fix issues with bad logo pointer

The logo pointer being used was just incorrect and throwing a warning.
This commit is contained in:
Jack Massey 2019-02-25 21:32:11 +10:00
parent d591379bef
commit 81b9762c4b
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -19,7 +19,7 @@ int main(void) {
st7735_set_orientation(ST7735_LANDSCAPE);
st7735_fill_rect(0, 0, 160, 128, ST7735_COLOR_BLACK);
st7735_draw_mono_bitmap(16, 4, &logo_bw, ST7735_COLOR_WHITE, ST7735_COLOR_BLACK);
st7735_draw_mono_bitmap(16, 4, (PGM_P) logo_bw, ST7735_COLOR_WHITE, ST7735_COLOR_BLACK);
//st7735_draw_bitmap(10, 10, &logo);