diff options
author | D G Turner | 2017-01-16 06:09:13 +0000 |
---|---|---|
committer | D G Turner | 2017-01-16 06:09:13 +0000 |
commit | 694a84070466a370e16dd503803d0ebc3b132a36 (patch) | |
tree | 24bc7660d74d8db9b4657a0d7c654e2661c0713d /engines | |
parent | 16da2614fdfe8fdb16421c526c2d4099dce6eaa8 (diff) | |
download | scummvm-rg350-694a84070466a370e16dd503803d0ebc3b132a36.tar.gz scummvm-rg350-694a84070466a370e16dd503803d0ebc3b132a36.tar.bz2 scummvm-rg350-694a84070466a370e16dd503803d0ebc3b132a36.zip |
DIRECTOR: Fix Unused Variable Compiler Warning.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/director/frame.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/director/frame.cpp b/engines/director/frame.cpp index bbaa61d1d3..9b8f25f4fa 100644 --- a/engines/director/frame.cpp +++ b/engines/director/frame.cpp @@ -842,6 +842,8 @@ void Frame::renderText(Graphics::ManagedSurface &surface, uint16 spriteId, Commo textCast->palinfo2 = textStream->readUint16(); textCast->palinfo3 = textStream->readUint16(); + debugC(3, kDebugText, "renderText: formattingCount: %u formatStartOffset: %d", formattingCount, formatStartOffset); + formattingCount--; } |