Fixed errors line number

This commit is contained in:
Lynix 2012-05-09 06:59:58 +02:00
parent e91cde657b
commit 997b6637d4
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ void NzLog::WriteError(nzErrorType type, const NzString& error, unsigned int lin
stream += " ("; stream += " (";
stream += file; stream += file;
stream += ':'; stream += ':';
stream += line; stream += NzString::Number(line);
stream += ": "; stream += ": ";
stream += func; stream += func;
stream += ')'; stream += ')';