aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/world.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-01-07 12:14:07 +0100
committerEugene Sandulenko2016-01-07 12:14:07 +0100
commitf2584488aab4073642ddbf35c50ea8e46bd43a55 (patch)
treea62e0bf5f257308467e97ceddaa142f727e501bc /engines/wage/world.cpp
parent46076a0e6c6a6f35f979dc26c70fd023a3282626 (diff)
downloadscummvm-rg350-f2584488aab4073642ddbf35c50ea8e46bd43a55.tar.gz
scummvm-rg350-f2584488aab4073642ddbf35c50ea8e46bd43a55.tar.bz2
scummvm-rg350-f2584488aab4073642ddbf35c50ea8e46bd43a55.zip
WAGE: Fixed font mapping
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 188754534c..22a7bc9b4b 100644
--- a/engines/wage/world.cpp
+++ b/engines/wage/world.cpp
@@ -182,7 +182,7 @@ bool World::loadWorld(Common::MacResManager *resMan) {
scene->_fontSize = res->readUint16BE();
if (scene->_fontType != 3 || scene->_fontSize != 9)
- warning("scene: %s font: %s size: %d", scene->_name.c_str(), scene->getFontName(), scene->_fontSize);
+ warning("scene: %s font: '%s' (%d) size: %d", scene->_name.c_str(), scene->getFontName(), scene->_fontType, scene->_fontSize);
String text;
while (res->pos() < res->size()) {