Fix typos in some warnings

svn-id: r25171
This commit is contained in:
Max Horn 2007-01-25 00:36:48 +00:00
parent 38ded04da9
commit 30d517613a
2 changed files with 2 additions and 2 deletions

View File

@ -2276,7 +2276,7 @@ void Screen::loadBitmap(const char *filename, int tempPage, int dstPage, uint8 *
uint8 *srcData = _vm->resource()->fileData(filename, &fileSize);
if (!srcData) {
warning("coudln't load bitmap: '%s'", filename);
warning("couldn't load bitmap: '%s'", filename);
return;
}

View File

@ -411,7 +411,7 @@ bool StaticResource::loadLanguageTable(const char *filename, void *&ptr, int &si
static bool warned = false;
if (!warned) {
warned = true;
warning("coudln't find specific language table for your version, using English now");
warning("couldn't find specific language table for your version, using English now");
}
return true;
}