mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 17:29:11 +00:00
GRAPHICS: MACGUI: Indicate presence of a table in debug output in MacTextCanvas
This commit is contained in:
parent
71b3ba59ee
commit
63c8367ace
@ -1379,7 +1379,8 @@ void MacTextCanvas::debugPrint(const char *prefix) {
|
||||
for (uint i = 0; i < _text.size(); i++) {
|
||||
if (prefix)
|
||||
DN(8, "%s: ", prefix);
|
||||
DN(8, "%2d, %c fi: %d, i: %d ", i, _text[i].paragraphEnd ? '$' : '.', _text[i].firstLineIndent, _text[i].indent);
|
||||
DN(8, "%2d, %c %c fi: %d, i: %d ", i, _text[i].paragraphEnd ? '$' : '.', _text[i].table ? 'T' : ' ',
|
||||
_text[i].firstLineIndent, _text[i].indent);
|
||||
|
||||
for (uint j = 0; j < _text[i].chunks.size(); j++)
|
||||
_text[i].chunks[j].debugPrint();
|
||||
|
Loading…
x
Reference in New Issue
Block a user