Change debugs back to warnings (As requested)

svn-id: r12931
This commit is contained in:
Travis Howell 2004-02-18 11:46:07 +00:00
parent 97472bd078
commit 929fd0591f
2 changed files with 2 additions and 2 deletions

View File

@ -1275,7 +1275,7 @@ void ScummEngine::setObjectState(int obj, int state, int x, int y) {
i = getObjectIndex(obj);
if (i == -1) {
debug(1, "setObjectState: no such object %d", obj);
warning("setObjectState: no such object %d", obj);
return;
}

View File

@ -453,7 +453,7 @@ void ScummEngine::drawString(int a) {
// Sam and Max seems to blitAlso 32 a lot, which does
// nothing anyway. So just hide that one for brevity.
if (c != 32)
debug(1, "Would have set _charset->_blitAlso = true (wanted to print '%c' = %d)", c, c);
warning("Would have set _charset->_blitAlso = true (wanted to print '%c' = %d)", c, c);
_charset->_blitAlso = true;
}
}