aboutsummaryrefslogtreecommitdiffhomepage
path: root/source
diff options
context:
space:
mode:
authordiscip <[email protected]>2023-11-21 17:11:21 +0100
committerGitHub <[email protected]>2023-11-21 17:11:21 +0100
commit4f5bbcf370034f90088cd52a4b8b95f15681123a (patch)
treefa9d17b777b9692740d6099cc808d2d76feb00b8 /source
parent92f74e58810e51f6aad8798bcb780714d1e00cd8 (diff)
downloadIronOS-4f5bbcf370034f90088cd52a4b8b95f15681123a.tar.gz
IronOS-4f5bbcf370034f90088cd52a4b8b95f15681123a.zip
Update settingsGUI.cpp
Diffstat (limited to 'source')
-rw-r--r--source/Core/Src/settingsGUI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Core/Src/settingsGUI.cpp b/source/Core/Src/settingsGUI.cpp
index c551e14d..c3208352 100644
--- a/source/Core/Src/settingsGUI.cpp
+++ b/source/Core/Src/settingsGUI.cpp
@@ -842,10 +842,10 @@ static void displayLogoTime(void) {
OLED::print(translatedString(Tr->OffString), FontStyle::LARGE);
break;
case logoMode_t::ONETIME:
- OLED::drawArea((OLED_WIDTH - 24 - 2) + 12, 0, 24, 16, infinityIcon);
+ OLED::drawArea(OLED_WIDTH - 24 - 2, 0, 24, 16, infinityOnce);
break;
case logoMode_t::INFINITY:
- OLED::drawArea(OLED_WIDTH - 24 - 2, 0, 24, 16, infinityIcon);
+ OLED::drawArea(OLED_WIDTH - 24 - 2, 0, 24, 16, infinityLoop);
break;
default:
OLED::printNumber(getSettingValue(SettingsOptions::LOGOTime), 2, FontStyle::LARGE);