Skip to content

Commit

Permalink
fix(splashscr): Center attribution text
Browse files Browse the repository at this point in the history
  • Loading branch information
jgauchia committed Dec 8, 2024
1 parent daf695b commit 74fc51f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/gui/src/splashScr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ void splashScreen()
tft.setTextSize(1);
tft.setTextColor(TFT_WHITE, TFT_BLACK);

tft.drawString("Map data from OpenStreetMap.",0, TFT_HEIGHT - 120 );
tft.drawString("(c) OpenStreetMap",0, TFT_HEIGHT - 110 );
tft.drawString("(c) OpenStreetMap contributors",0, TFT_HEIGHT - 100 );
tft.drawCenterString("Map data from OpenStreetMap.",tft.width() >> 1, TFT_HEIGHT - 120 );
tft.drawCenterString("(c) OpenStreetMap",tft.width() >> 1, TFT_HEIGHT - 110 );
tft.drawCenterString("(c) OpenStreetMap contributors",tft.width() >> 1, TFT_HEIGHT - 100 );

char statusString[50] = "";
tft.setTextColor(TFT_YELLOW, TFT_BLACK);
Expand Down

0 comments on commit 74fc51f

Please sign in to comment.