(svn r15668) -Fix: a few typos.

This commit is contained in:
yexo
2009-03-11 07:32:31 +00:00
parent 3f9a117ad2
commit 28c49b694a
4 changed files with 5 additions and 5 deletions

View File

@@ -388,7 +388,7 @@ enum {
/* static */ bool AIInstance::SaveObject(HSQUIRRELVM vm, SQInteger index, int max_depth, bool test)
{
if (max_depth == 0) {
AILog::Error("Savedata can only be nested to 5 deep. No data saved.");
AILog::Error("Savedata can only be nested to 25 deep. No data saved.");
return false;
}
@@ -499,7 +499,7 @@ enum {
}
default:
AILog::Error("You tried to save unsupported type. No data saved.");
AILog::Error("You tried to save an unsupported type. No data saved.");
return false;
}
}