Fixed lines ending with whitespace.
This commit is contained in:
@ -79,10 +79,13 @@ void BitmapFont::buffer(
|
|||||||
if(maxWidth != -1 && (xy0.x+tileSize.x) > maxWidth) {
|
if(maxWidth != -1 && (xy0.x+tileSize.x) > maxWidth) {
|
||||||
// We've exceeded the edge on THIS character. We first need to go back to
|
// 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
|
// the start of the word and push it to the new line
|
||||||
|
|
||||||
size_t charsToBeRewound = ((i - 1) - wordStart);
|
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.x = 0;
|
||||||
xy0.y += tileSize.y;
|
xy0.y += tileSize.y;
|
||||||
@ -99,8 +102,6 @@ void BitmapFont::buffer(
|
|||||||
xy0.x += tileSize.x;
|
xy0.x += tileSize.x;
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Next line begins with this word
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tile = this->tileset->getTile(c);
|
tile = this->tileset->getTile(c);
|
||||||
|
Reference in New Issue
Block a user