| 104 | } |
| 105 | |
| 106 | int SdCardFontSystem::resolveFontId(const char* familyName, uint8_t /*fontSizeEnum*/) const { |
| 107 | // The manager loads exactly one size (closest to SETTINGS.fontSize), so the |
| 108 | // enum is implicit — always return the single loaded font ID for this family. |
| 109 | // ensureLoaded() must have been called with the current settings before this. |
| 110 | return manager_.getFontId(familyName); |
| 111 | } |