From ac72e2292e35fe39b4f7caee98ec09e3a0d40a6d Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Mon, 14 Jun 2021 21:01:29 +0200 Subject: [PATCH] Rename bootImage to logoImage --- src/drv/tft/tft_driver_tftespi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drv/tft/tft_driver_tftespi.cpp b/src/drv/tft/tft_driver_tftespi.cpp index 84a6bd37..d4e91394 100644 --- a/src/drv/tft/tft_driver_tftespi.cpp +++ b/src/drv/tft/tft_driver_tftespi.cpp @@ -110,7 +110,7 @@ void TftEspi::splashscreen() tft.fillScreen(bgColor.full); int x = (tft.width() - logoWidth) / 2; int y = (tft.height() - logoHeight) / 2; - tft.drawXBitmap(x, y, bootImage, logoWidth, logoHeight, fgColor.full); + tft.drawXBitmap(x, y, logoImage, logoWidth, logoHeight, fgColor.full); } void TftEspi::set_rotation(uint8_t rotation)