remove \n from warning() and error() funcs

This commit is contained in:
Pawel Kolodziejski 2008-09-28 15:23:15 +00:00
parent e4295b23a6
commit a698196cdc
22 changed files with 78 additions and 79 deletions

View file

@ -41,7 +41,7 @@ Bitmap::Bitmap(const char *filename, const char *data, int len) :
if (len < 8 || memcmp(data, "BM F\0\0\0", 8) != 0) {
if (debugLevel == DEBUG_BITMAPS || debugLevel == DEBUG_ERROR || debugLevel == DEBUG_ALL)
error("Invalid magic loading bitmap\n");
error("Invalid magic loading bitmap");
}
strcpy(_filename, filename);