1
0
forked from me/IronOS

Create Settings Off char

This commit is contained in:
Ben V. Brown
2021-03-16 21:42:11 +11:00
parent 41f0a1f347
commit bb379e4ac0
30 changed files with 33 additions and 1 deletions

View File

@@ -60,6 +60,7 @@ extern const char *SettingLockBoostChar;
extern const char *SettingLockFullChar;
extern const char *SettingNAChar;
extern const char *SettingOffChar;
extern const char *SettingFastChar;
extern const char *SettingMediumChar;
extern const char *SettingSlowChar;

View File

@@ -940,7 +940,7 @@ static void settings_displayAnimationSpeed(void) {
OLED::print(SettingFastChar);
break;
default:
OLED::print(OffString);
OLED::print(SettingOffChar);
break;
}
}