aboutsummaryrefslogtreecommitdiff
path: root/engines/director/frame.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-11-24 17:41:35 +0100
committerEugene Sandulenko2019-11-24 18:42:45 +0100
commit2e67303716a4c8be0c5f4db181d72de3c6a83f7a (patch)
tree13bbf683824cdb4e3ba9235fc5d4746da7f5d7dd /engines/director/frame.cpp
parent8ecb3207eddc938b872ce90b9daa4db518337ace (diff)
downloadscummvm-rg350-2e67303716a4c8be0c5f4db181d72de3c6a83f7a.tar.gz
scummvm-rg350-2e67303716a4c8be0c5f4db181d72de3c6a83f7a.tar.bz2
scummvm-rg350-2e67303716a4c8be0c5f4db181d72de3c6a83f7a.zip
DIRECTOR: More debug output to cast rendering
Diffstat (limited to 'engines/director/frame.cpp')
-rw-r--r--engines/director/frame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/frame.cpp b/engines/director/frame.cpp
index c22bb05025..b7743aec99 100644
--- a/engines/director/frame.cpp
+++ b/engines/director/frame.cpp
@@ -776,7 +776,7 @@ void Frame::renderText(Graphics::ManagedSurface &surface, uint16 spriteId, Commo
Graphics::MacFont *macFont = new Graphics::MacFont(textCast->fontId, textCast->fontSize, textCast->textSlant);
- debugC(3, kDebugText, "renderText: x: %d y: %d w: %d h: %d font: '%s'", x, y, width, height, _vm->_wm->_fontMan->getFontName(*macFont).c_str());
+ debugC(3, kDebugText, "renderText: x: %d y: %d w: %d h: %d font: '%s' text: '%s'", x, y, width, height, _vm->_wm->_fontMan->getFontName(*macFont).c_str(), textCast->_ftext.c_str());
uint16 boxShadow = (uint16)textCast->boxShadow;
uint16 borderSize = (uint16)textCast->borderSize;