Get the current font height
| 64 | |
| 65 | // Get the current font height |
| 66 | PixelNumber Lcd::GetFontHeight() const noexcept |
| 67 | { |
| 68 | #if USE_FONT_CHIP |
| 69 | return fontChip.GetFontHeight(currentFontNumber); |
| 70 | #else |
| 71 | return fonts[currentFontNumber]->height; |
| 72 | #endif |
| 73 | } |
| 74 | |
| 75 | // Get the height of a specified font |
| 76 | PixelNumber Lcd::GetFontHeight(size_t fontNumber) const noexcept |
no outgoing calls
no test coverage detected