aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2015-12-27 13:18:59 +0100
committerEugene Sandulenko2015-12-27 15:41:04 +0100
commitc020cd7e960de1977ab84db596f353c506620296 (patch)
treecf1d6d536bad82b439ecb65791beb85ab3805830 /engines
parent88e864a553ad66c3b6b8631afd96a8d619eac3f5 (diff)
downloadscummvm-rg350-c020cd7e960de1977ab84db596f353c506620296.tar.gz
scummvm-rg350-c020cd7e960de1977ab84db596f353c506620296.tar.bz2
scummvm-rg350-c020cd7e960de1977ab84db596f353c506620296.zip
WAGE: More debug output
Diffstat (limited to 'engines')
-rw-r--r--engines/wage/world.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp
index a99300e9c2..65c562de40 100644
--- a/engines/wage/world.cpp
+++ b/engines/wage/world.cpp
@@ -160,6 +160,9 @@ bool World::loadWorld(Common::MacResManager *resMan) {
scene->_fontType = res->readUint16BE();
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);
+
String text;
while (res->pos() < res->size()) {
char c = res->readByte();