diff options
author | Eugene Sandulenko | 2016-01-18 21:36:31 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-02-14 17:12:47 +0100 |
commit | f428f597887b6d96c6832250d4a713ede92e4b04 (patch) | |
tree | ea0a08d354361ff90990e59f1010fe2526e0bfec | |
parent | 61dec8fd964fa710107c3e6f1abb7ee72ec90a6b (diff) | |
download | scummvm-rg350-f428f597887b6d96c6832250d4a713ede92e4b04.tar.gz scummvm-rg350-f428f597887b6d96c6832250d4a713ede92e4b04.tar.bz2 scummvm-rg350-f428f597887b6d96c6832250d4a713ede92e4b04.zip |
WAGE: Remove now useess warning
-rw-r--r-- | engines/wage/world.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp index 85c72bb1ec..cead6ae49d 100644 --- a/engines/wage/world.cpp +++ b/engines/wage/world.cpp @@ -180,9 +180,6 @@ 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' (%d) size: %d", scene->_name.c_str(), scene->getFontName(), scene->_fontType, scene->_fontSize); - String text; while (res->pos() < res->size()) { char c = res->readByte(); |