Small cleanup

This commit is contained in:
Dave Allie
2025-12-06 20:24:24 +11:00
parent 4ecfdea1a1
commit ad8cee12ab
3 changed files with 1 additions and 4 deletions

View File

@@ -5,7 +5,6 @@
inline int min(const int a, const int b) { return a < b ? a : b; }
inline int max(const int a, const int b) { return a < b ? b : a; }
// TODO: Text properties??
void EpdFont::getTextBounds(const char* string, const int startX, const int startY, int* minX, int* minY, int* maxX,
int* maxY) const {
*minX = startX;