1
0
forked from me/IronOS

Draw no longer needs a return value

This commit is contained in:
Ben V. Brown
2021-09-25 10:21:44 +10:00
parent 2b390d68b4
commit e8d26c3159
2 changed files with 106 additions and 158 deletions

View File

@@ -26,7 +26,7 @@ typedef struct {
uint8_t description;
// return true if increment reached the maximum value
bool (*const incrementHandler)(void);
bool (*const draw)(void);
void (*const draw)(void);
bool (*const isVisible)(void);
// If this is set, we will automatically use the settings increment handler instead, set >= num settings to disable
SettingsOptions autoSettingOption;