Minor stuff

This commit is contained in:
Jérôme Leclercq
2021-08-02 11:14:36 +02:00
parent e98e46164c
commit f5dac32020
4 changed files with 7 additions and 59 deletions

View File

@@ -45,7 +45,11 @@ namespace Nz
template<typename T>
void ModuleBase<T>::LogUninit()
{
NazaraNotice("Uninitializing " + m_moduleName + "...");
if (m_moduleName.empty())
return;
NazaraNotice("Uninitialized " + m_moduleName);
m_moduleName.clear();
}
}