GRAPHICS: MACGUI: Added more debug output to MacText

This commit is contained in:
Eugene Sandulenko 2017-08-02 10:21:08 +02:00
parent 77932d5838
commit fe8ef60e08

View file

@ -262,6 +262,8 @@ void MacText::render(int from, int to) {
// TODO: _textMaxWidth, when -1, was not rendering ANY text.
for (uint j = 0; j < _textLines[i].chunks.size(); j++) {
debug(5, "line %d[%d]/%d at %d,%d (%s)", i, j, xOffset, _textLines[i].chunks[j].fontId, _textLines[i].y, _textLines[i].chunks[j].text.c_str());
if (_textLines[i].chunks[j].text.empty())
continue;