Fixed lines ending with whitespace.

This commit is contained in:
2023-03-14 21:21:16 -07:00
parent 9c556c4955
commit 374ae30b88

View File

@ -79,10 +79,13 @@ void BitmapFont::buffer(
if(maxWidth != -1 && (xy0.x+tileSize.x) > maxWidth) {
// We've exceeded the edge on THIS character. We first need to go back to
// the start of the word and push it to the new line
size_t charsToBeRewound = ((i - 1) - wordStart);
info->width = mathMax<float_t>(info->width, xy0.x - (tileSize.x * charsToBeRewound));
info->width = mathMax<float_t>(
info->width,
(xy0.x - (tileSize.x * charsToBeRewound)) -
(wordStart > 0 && text[wordStart - 1] == FONT_SPACE ? tileSize.x : 0)
);
xy0.x = 0;
xy0.y += tileSize.y;
@ -99,8 +102,6 @@ void BitmapFont::buffer(
xy0.x += tileSize.x;
j++;
}
// Next line begins with this word
}
tile = this->tileset->getTile(c);