aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/world.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-10-07 19:42:55 +0200
committerEugene Sandulenko2016-10-07 19:42:55 +0200
commit086963fd239db247e36a35cac2c19b2ce62f138f (patch)
treee2d03432eed580affcd8b8392cfe7a2ef96ae33d /engines/wage/world.cpp
parent6de4334f2b7a65bd01c6265270284393e3629bed (diff)
downloadscummvm-rg350-086963fd239db247e36a35cac2c19b2ce62f138f.tar.gz
scummvm-rg350-086963fd239db247e36a35cac2c19b2ce62f138f.tar.bz2
scummvm-rg350-086963fd239db247e36a35cac2c19b2ce62f138f.zip
GRAPHICS: Search for font substitution for MacFonts
Diffstat (limited to 'engines/wage/world.cpp')
-rw-r--r--engines/wage/world.cpp2
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()) {