diff options
-rw-r--r-- | engines/director/cachedmactext.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/director/cachedmactext.cpp b/engines/director/cachedmactext.cpp index 531d056582..dbb8abc6e4 100644 --- a/engines/director/cachedmactext.cpp +++ b/engines/director/cachedmactext.cpp @@ -55,7 +55,7 @@ void CachedMacText::makeMacText() { 1); // TODO destroy me - debug(5, "CachedMacText::makeMacText(): rendering '%s'", Common::toPrintable(_textCast->_ftext).c_str()); + debug(5, "CachedMacText::makeMacText(): font id: %d '%s'", _textCast->_fontId, Common::toPrintable(_textCast->_ftext).c_str()); } CachedMacText::CachedMacText(TextCast *const textCast, @@ -67,6 +67,8 @@ CachedMacText::CachedMacText(TextCast *const textCast, _surface(NULL), _macText(NULL), _width(defaultWidth), _dirty(true), _textCast(textCast), _wm(wm) { + debug(5, "CachedMacText::CachedMacText(): font id: %d '%s'", _textCast->_fontId, Common::toPrintable(_textCast->_ftext).c_str()); + if (_width == -1) { if (version >= 4) { // This came from frame.cpp |