diff options
author | Eugene Sandulenko | 2013-12-01 00:49:39 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-12-01 00:51:09 +0200 |
commit | 3e859768770a0b385e21c4528cd546b33ed9a55d (patch) | |
tree | f39875aa20f19040d6b15a525b91f758f3c16e0b /graphics | |
parent | ecf8f282d452081f1e6fce7e4518a1363ec30c7b (diff) | |
download | scummvm-rg350-3e859768770a0b385e21c4528cd546b33ed9a55d.tar.gz scummvm-rg350-3e859768770a0b385e21c4528cd546b33ed9a55d.tar.bz2 scummvm-rg350-3e859768770a0b385e21c4528cd546b33ed9a55d.zip |
GRAPHICS: Initialize variable. CID 1133708
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/fonts/ttf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/fonts/ttf.cpp b/graphics/fonts/ttf.cpp index be3cd94efa..93f119f028 100644 --- a/graphics/fonts/ttf.cpp +++ b/graphics/fonts/ttf.cpp @@ -141,7 +141,7 @@ private: TTFFont::TTFFont() : _initialized(false), _face(), _ttfFile(0), _size(0), _width(0), _height(0), _ascent(0), - _descent(0), _glyphs(), _monochrome(false), _hasKerning(false) { + _descent(0), _glyphs(), _monochrome(false), _hasKerning(false), _allowLateCaching(false) { } TTFFont::~TTFFont() { |