This commit is contained in:
Arisotura 2023-03-27 23:21:38 +02:00
parent 98c63829d6
commit f66a8ca9e3

View File

@ -431,6 +431,8 @@ void Log(LogLevel level, const char* fmt, ...)
{
if (fmt == nullptr)
return;
if (level <= LogLevel::Debug)
return;
va_list args;
va_start(args, fmt);