| 13 | theme = t; |
| 14 | } |
| 15 | FS *BruceTheme::themeFS(void) { |
| 16 | if (theme.fs == 1) return &LittleFS; |
| 17 | else if (theme.fs == 2) return &SD; |
| 18 | return &LittleFS; // always get back to safety |
| 19 | } |
| 20 | bool BruceTheme::openThemeFile(FS *fs, String filepath, bool overwriteConfigSettings) { |
| 21 | |
| 22 | if (fs == nullptr) return true; |
no outgoing calls
no test coverage detected