diff options
author | discip <[email protected]> | 2023-11-21 17:11:21 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-21 17:11:21 +0100 |
commit | 4f5bbcf370034f90088cd52a4b8b95f15681123a (patch) | |
tree | fa9d17b777b9692740d6099cc808d2d76feb00b8 /source | |
parent | 92f74e58810e51f6aad8798bcb780714d1e00cd8 (diff) | |
download | IronOS-4f5bbcf370034f90088cd52a4b8b95f15681123a.tar.gz IronOS-4f5bbcf370034f90088cd52a4b8b95f15681123a.zip |
Update settingsGUI.cpp
Diffstat (limited to 'source')
-rw-r--r-- | source/Core/Src/settingsGUI.cpp | 4 |
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); |