Minor fixes

This commit is contained in:
Lynix
2023-11-28 20:05:09 +01:00
parent c7579fb9be
commit 079f153640
16 changed files with 53 additions and 47 deletions

View File

@@ -211,7 +211,7 @@ namespace Nz
void MD5MeshParser::Error(const std::string& message)
{
NazaraErrorFmt("{0} at line #1", message, m_lineCount);
NazaraErrorFmt("{0} on line #{1}", message, m_lineCount);
}
bool MD5MeshParser::ParseJoints()
@@ -446,7 +446,7 @@ namespace Nz
void MD5MeshParser::Warning(const std::string& message)
{
NazaraWarning(message + " at line #" + std::to_string(m_lineCount));
NazaraWarningFmt("{0} on line #{1}", message, m_lineCount);
}
void MD5MeshParser::UnrecognizedLine(bool error)