aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-31 18:34:42 -0800
committerPaul Gilbert2018-12-31 18:34:42 -0800
commit1021da132b2ed37232461c1ff44b78164b0a4ee5 (patch)
tree51efb87db162a9a229ad5d6fb1c2ecb8d9d230fe /engines/glk/frotz
parentf25b3d93c1596eadc49578b8b331609168678429 (diff)
downloadscummvm-rg350-1021da132b2ed37232461c1ff44b78164b0a4ee5.tar.gz
scummvm-rg350-1021da132b2ed37232461c1ff44b78164b0a4ee5.tar.bz2
scummvm-rg350-1021da132b2ed37232461c1ff44b78164b0a4ee5.zip
GLK: Splitting font related info from Conf into their own classes
Diffstat (limited to 'engines/glk/frotz')
-rw-r--r--engines/glk/frotz/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/frotz/screen.cpp b/engines/glk/frotz/screen.cpp
index 218391ee96..8bdfafd879 100644
--- a/engines/glk/frotz/screen.cpp
+++ b/engines/glk/frotz/screen.cpp
@@ -54,7 +54,7 @@ void FrotzScreen::loadFonts(Common::Archive *archive) {
if (!f.open("NotoSansRunic-Regular.ttf", *archive))
error("Could not load font");
- _fonts.push_back(Graphics::loadTTFFont(f, g_conf->_propSize, Graphics::kTTFSizeModeCharacter));
+ _fonts.push_back(Graphics::loadTTFFont(f, g_conf->_propInfo._size, Graphics::kTTFSizeModeCharacter));
f.close();
}