diff options
author | Eugene Sandulenko | 2020-01-07 22:00:23 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2020-01-07 22:00:23 +0100 |
commit | a98d3832d9d08eae63f48008466f7ecbdfca16bf (patch) | |
tree | b482e0ee38ea15c41dfca98edc2f6f70f86d636c /graphics/fonts | |
parent | 3002f078753de2cd2e51f5f7ec35fb82953aa134 (diff) | |
download | scummvm-rg350-a98d3832d9d08eae63f48008466f7ecbdfca16bf.tar.gz scummvm-rg350-a98d3832d9d08eae63f48008466f7ecbdfca16bf.tar.bz2 scummvm-rg350-a98d3832d9d08eae63f48008466f7ecbdfca16bf.zip |
GRAPHICS: FONTS: Fix warnings
Diffstat (limited to 'graphics/fonts')
-rw-r--r-- | graphics/fonts/macfont.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/fonts/macfont.cpp b/graphics/fonts/macfont.cpp index 730229c750..50635fda47 100644 --- a/graphics/fonts/macfont.cpp +++ b/graphics/fonts/macfont.cpp @@ -524,7 +524,7 @@ MacFONTFont *MacFONTFont::scaleFont(const MacFONTFont *src, int newSize, bool bo #if DEBUGSCALING if (i == ccc) - debug(""); + debugN("\n"); #endif } } @@ -583,7 +583,7 @@ MacFONTFont *MacFONTFont::scaleFont(const MacFONTFont *src, int newSize, bool bo debugN("%c", srcRow[bitmapOffset / 8] & (1 << (7 - (bitmapOffset % 8))) ? '*' : '.'); } - debug(""); + debugN("\n"); } #endif @@ -637,7 +637,7 @@ static void magnifyGray(Surface *src, int *dstGray, int width, int height, float #if DEBUGSCALING if (dododo) - debug(""); + debugN("\n"); #endif } } |