aboutsummaryrefslogtreecommitdiff
path: root/graphics/fonts
diff options
context:
space:
mode:
authorD G Turner2017-01-17 11:00:18 +0000
committerD G Turner2017-01-17 11:00:18 +0000
commita8d975f03273e931e57efe5b7d51751a238b6886 (patch)
tree040e81ac307a526878ebae9ccc6033c38bd5b8c3 /graphics/fonts
parent4236d93aae16bd5e5cf63256fd7617961da49204 (diff)
downloadscummvm-rg350-a8d975f03273e931e57efe5b7d51751a238b6886.tar.gz
scummvm-rg350-a8d975f03273e931e57efe5b7d51751a238b6886.tar.bz2
scummvm-rg350-a8d975f03273e931e57efe5b7d51751a238b6886.zip
GRAPHICS: Fix Zero Length Format String Compiler Warnings.
Diffstat (limited to 'graphics/fonts')
-rw-r--r--graphics/fonts/macfont.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/fonts/macfont.cpp b/graphics/fonts/macfont.cpp
index 1b094c2442..d3638fc749 100644
--- a/graphics/fonts/macfont.cpp
+++ b/graphics/fonts/macfont.cpp
@@ -132,7 +132,7 @@ bool MacFont::loadFOND(Common::SeekableReadStream &stream) {
_ffProperty[i] = stream.readUint16BE();
debugN(10, "%d ", _ffProperty[i]);
}
- debug(10, "");
+ debug(10, "%s", "");
_ffIntl[0] = stream.readUint16BE(); // for international use
_ffIntl[1] = stream.readUint16BE(); // for international use
@@ -162,7 +162,7 @@ bool MacFont::loadFOND(Common::SeekableReadStream &stream) {
_ffOffsets[i] = stream.readUint32BE();
debugN(10, "%d ", _ffOffsets[i]);
}
- debug(10, "");
+ debug(10, "%s", "");
_ffNumBBoxes = stream.readUint16BE(); // number of entries - 1
_ffBBoxes.resize(_ffNumBBoxes + 1);