v.0.1.1 rm fontHeight_NxM
This commit is contained in:
@@ -10,8 +10,3 @@ const std::vector<uint16_t> &getFontChar_16x16(char c)
|
||||
}
|
||||
return font_16x16.at(' '); // Fallback to space
|
||||
}
|
||||
|
||||
const uint8_t fontHeight_16x16()
|
||||
{
|
||||
return 16;
|
||||
}
|
||||
|
||||
@@ -115,6 +115,5 @@ const std::map<uint8_t, std::vector<uint16_t>> font_16x16 = {
|
||||
|
||||
// Declarations only
|
||||
const std::vector<uint16_t> &getFontChar_16x16(char c);
|
||||
const uint8_t fontHeight_16x16();
|
||||
|
||||
#endif
|
||||
@@ -10,8 +10,3 @@ const std::vector<uint8_t> &getFontChar_5x7(char c)
|
||||
}
|
||||
return font_5x7.at(' '); // Fallback to space
|
||||
}
|
||||
|
||||
const uint8_t fontHeight_5x7()
|
||||
{
|
||||
return 7;
|
||||
}
|
||||
|
||||
@@ -117,6 +117,5 @@ const std::map<uint8_t, std::vector<uint8_t>> font_5x7 = {
|
||||
|
||||
// Declarations only
|
||||
const vector<uint8_t> &getFontChar_5x7(char c);
|
||||
const uint8_t fontHeight_5x7();
|
||||
|
||||
#endif
|
||||
@@ -10,8 +10,3 @@ const std::vector<uint8_t> &getFontChar_8x8(char c)
|
||||
}
|
||||
return font_8x8.at(' '); // Fallback to space
|
||||
}
|
||||
|
||||
const uint8_t fontHeight_8x8()
|
||||
{
|
||||
return 8;
|
||||
}
|
||||
|
||||
@@ -112,6 +112,5 @@ const std::map<uint8_t, std::vector<uint8_t>> font_8x8 = {
|
||||
|
||||
// Declarations only
|
||||
const std::vector<uint8_t> &getFontChar_8x8(char c);
|
||||
const uint8_t fontHeight_8x8();
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user