warning() and error() add a ! to the string automatically.

This commit is contained in:
Torbjorn Andersson 2009-05-31 07:33:18 +00:00
parent a3a72746fc
commit e90ad4af30
13 changed files with 64 additions and 64 deletions

View file

@ -250,7 +250,7 @@ void TextObject::draw() {
g_driver->drawTextBitmap(x, height + y, _textObjectHandle[i]);
} else if (gDebugLevel == DEBUG_WARN || gDebugLevel == DEBUG_ALL)
warning("TextObject::draw: Unknown justification code (%d)!", _justify);
warning("TextObject::draw: Unknown justification code (%d)", _justify);
height += _font->getHeight();
}