patch by jerry -- his first patch! :-)

issue #421 -- portable version for windows.
This commit is contained in:
Nick Bolton
2013-03-15 16:14:43 +00:00
parent c8ea071d78
commit 6ec2ea2c0e
27 changed files with 1352 additions and 15 deletions

View File

@@ -115,6 +115,9 @@ CLog::getFilterName() const
const char*
CLog::getFilterName(int level) const
{
if (level < 0) {
return "Message";
}
return g_priority[level];
}