diff options
author | D G Turner | 2017-08-02 13:26:29 +0100 |
---|---|---|
committer | D G Turner | 2017-08-02 13:26:29 +0100 |
commit | b3c1ed66e4ca02ed2c5f33363c8a04a7574e8489 (patch) | |
tree | d80ff7345a76e6d2368e1ed8aa2675f5abf96601 | |
parent | 8864cfc0fa88463ba21dd0b10df091a30b39daba (diff) | |
download | scummvm-rg350-b3c1ed66e4ca02ed2c5f33363c8a04a7574e8489.tar.gz scummvm-rg350-b3c1ed66e4ca02ed2c5f33363c8a04a7574e8489.tar.bz2 scummvm-rg350-b3c1ed66e4ca02ed2c5f33363c8a04a7574e8489.zip |
DIRECTOR: Fix GCC Compiler Warnings.
-rw-r--r-- | engines/director/stxt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/director/stxt.cpp b/engines/director/stxt.cpp index 071a629cb6..965dc49903 100644 --- a/engines/director/stxt.cpp +++ b/engines/director/stxt.cpp @@ -59,8 +59,8 @@ Stxt::Stxt(Common::SeekableSubReadStreamEndian &textStream) { _palinfo2 = textStream.readUint16(); _palinfo3 = textStream.readUint16(); - debugC(3, kDebugText, "Stxt init: formattingCount: %u, formatStartOffset: %d, height: %d ascent: %d, fontId: %d, textSlant: %d", - formattingCount, formatStartOffset, height, ascent, _fontId, _textSlant); + debugC(3, kDebugText, "Stxt init: formattingCount: %u, formatStartOffset: %d, height: %d ascent: %d, fontId: %d, textSlant: %d padding: 0x%02x", + formattingCount, formatStartOffset, height, ascent, _fontId, _textSlant, padding); debugC(3, kDebugText, " fontSize: %d, p0: %x p1: %x p2: %x", _fontSize, _palinfo1, _palinfo2, _palinfo3); |