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

@@ -153,7 +153,7 @@ namespace Nz
inline void OBJParser::Error(const std::string& message)
{
NazaraErrorFmt("{0} at line #{1}", message, m_lineCount);
NazaraErrorFmt("{0} on line #{1}", message, m_lineCount);
}
inline void OBJParser::Flush() const
@@ -164,7 +164,7 @@ namespace Nz
inline void OBJParser::Warning(const std::string& message)
{
NazaraWarningFmt("{0} at line #{1}", message, m_lineCount);
NazaraWarningFmt("{0} on line #{1}", message, m_lineCount);
}
inline bool OBJParser::UnrecognizedLine(bool error)