Fix assets

This commit is contained in:
Just Call Me Koko
2020-02-05 22:39:02 -05:00
parent c0ec1c789e
commit 1317276556
6 changed files with 117 additions and 109 deletions

View File

@@ -187,7 +187,7 @@ void Display::tftDrawExitScaleButtons()
void Display::twoPartDisplay(String center_text)
{
tft.setTextColor(TFT_BLACK, TFT_YELLOW);
tft.fillRect(0,16,240,144, TFT_YELLOW);
tft.fillRect(0,16,HEIGHT_1,144, TFT_YELLOW);
//tft.drawCentreString(center_text,120,82,1);
tft.setTextWrap(true);
tft.setFreeFont(NULL);
@@ -202,7 +202,7 @@ void Display::twoPartDisplay(String center_text)
void Display::touchToExit()
{
tft.setTextColor(TFT_BLACK, TFT_LIGHTGREY);
tft.fillRect(0,16,240,16, TFT_LIGHTGREY);
tft.fillRect(0,16,HEIGHT_1,16, TFT_LIGHTGREY);
tft.drawCentreString("Touch screen to exit",120,16,2);
}