diff options
author | Max Horn | 2004-08-08 22:39:07 +0000 |
---|---|---|
committer | Max Horn | 2004-08-08 22:39:07 +0000 |
commit | 312e4047dcea65e202fdb24f86cb4a1eb5ba08b1 (patch) | |
tree | 16d0a785d5b411f8c68c6af5849b5aa24fba707b | |
parent | 835ef5f0127718959425dfdd7c123cf14ce13829 (diff) | |
download | scummvm-rg350-312e4047dcea65e202fdb24f86cb4a1eb5ba08b1.tar.gz scummvm-rg350-312e4047dcea65e202fdb24f86cb4a1eb5ba08b1.tar.bz2 scummvm-rg350-312e4047dcea65e202fdb24f86cb4a1eb5ba08b1.zip |
Remove these warnings -- no reports came in all the time anyway, and things seem to work fine
svn-id: r14522
-rw-r--r-- | scumm/string.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index eb51bfeead..e7c67009e7 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -310,10 +310,6 @@ void ScummEngine::CHARSET_1() { // TODO Verify this is correct spot if (_version == 8) VAR(VAR_HAVE_MSG) = (_string[0].no_talk_anim) ? 2 : 1; - - // FIXME: Remove this and the next two lines eventually! - if (_charset->_hasMask != (_charset->_str.left != -1)) - warning("_hasMask mismatch (case A %d) - please report to Fingolfin if you notice any text/graphics glitches related to this!", _charset->_hasMask); } void ScummEngine::drawString(int a, const byte *msg) { @@ -427,14 +423,7 @@ void ScummEngine::drawString(int a, const byte *msg) { _charset->_nextTop = _charset->_top; } - _string[a].xpos = _charset->_str.right + 8; // Indy3: Fixes Grail Diary text positioning - - if (_version >= 7) { - // FIXME: Remove this and the next two lines eventually! - if (!_charset->_hasMask) - warning("_hasMask mismatch (case B %d) - please report to Fingolfin if you notice any text/graphics glitches related to this!", _charset->_hasMask); - } } int ScummEngine::addMessageToStack(const byte *msg, byte *dst, int dstSize) { |