diff options
author | Eugene Sandulenko | 2016-10-07 19:42:55 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-10-07 19:42:55 +0200 |
commit | 086963fd239db247e36a35cac2c19b2ce62f138f (patch) | |
tree | e2d03432eed580affcd8b8392cfe7a2ef96ae33d /engines | |
parent | 6de4334f2b7a65bd01c6265270284393e3629bed (diff) | |
download | scummvm-rg350-086963fd239db247e36a35cac2c19b2ce62f138f.tar.gz scummvm-rg350-086963fd239db247e36a35cac2c19b2ce62f138f.tar.bz2 scummvm-rg350-086963fd239db247e36a35cac2c19b2ce62f138f.zip |
GRAPHICS: Search for font substitution for MacFonts
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wage/world.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp index 100517b836..90d689720e 100644 --- a/engines/wage/world.cpp +++ b/engines/wage/world.cpp @@ -206,7 +206,7 @@ bool World::loadWorld(Common::MacResManager *resMan) { scene->_textBounds = readRect(res); int fontType = res->readUint16BE(); int fontSize = res->readUint16BE(); - scene->_font = new Graphics::MacFont(fontType, fontSize, Graphics::FontManager::kConsoleFont); + scene->_font = new Graphics::MacFont(fontType, fontSize, Graphics::kMacFontRegular, Graphics::FontManager::kConsoleFont); Common::String text; while (res->pos() < res->size()) { |