Files
IronOS/source/Core/Src/FontUtils.cpp
2023-06-29 18:38:50 +10:00

12 lines
270 B
C++

#include "FontUtils.h"
constexpr uint8_t get_fontstyle_height(const FontStyle font) {
if (font == FontStyle::SMALL)
return 8;
return 16;
}
constexpr uint8_t get_fontstyle_width(const FontStyle font) {
if (font == FontStyle::SMALL)
return 6;
return 12;
}