diff options
| author | RichieSams | 2013-09-08 16:40:38 -0500 |
|---|---|---|
| committer | RichieSams | 2013-09-09 11:16:45 -0500 |
| commit | f5f053d335f019a0c26dc8c11730cf0231d9bc60 (patch) | |
| tree | 0e215d06100de2cac9c592c41048d1bee00bec10 /engines | |
| parent | 072b852cdc627b060505d1a4da4e0bb4a0300c51 (diff) | |
| download | scummvm-rg350-f5f053d335f019a0c26dc8c11730cf0231d9bc60.tar.gz scummvm-rg350-f5f053d335f019a0c26dc8c11730cf0231d9bc60.tar.bz2 scummvm-rg350-f5f053d335f019a0c26dc8c11730cf0231d9bc60.zip | |
ZVISION: Use default dpi for font
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/zvision/truetype_font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/truetype_font.cpp b/engines/zvision/truetype_font.cpp index b3aafc26d7..dacd7967d3 100644 --- a/engines/zvision/truetype_font.cpp +++ b/engines/zvision/truetype_font.cpp @@ -75,7 +75,7 @@ bool TruetypeFont::loadFile(const Common::String &filename) { return false; } - _font = Graphics::loadTTFFont(file, 96, _fontHeight); // Use the same dpi as WME (96 vs 72). + _font = Graphics::loadTTFFont(file, _fontHeight); _lineHeight = _font->getFontHeight(); return true; |
