Skip to content

Commit

Permalink
DIRECTOR: Fix GCC Compiler Warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Aug 2, 2017
1 parent 8864cfc commit b3c1ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/director/stxt.cpp
Expand Up @@ -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);

Expand Down

0 comments on commit b3c1ed6

Please sign in to comment.