| 8 | namespace { |
| 9 | |
| 10 | static uint8_t fontSizeEnumFromSettings() { |
| 11 | uint8_t e = SETTINGS.fontSize; |
| 12 | if (e >= CrossPointSettings::FONT_SIZE_COUNT) e = 1; // default to MEDIUM |
| 13 | return e; |
| 14 | } |
| 15 | |
| 16 | } // namespace |
| 17 |
no outgoing calls
no test coverage detected