Fix TAS movie crash

This commit is contained in:
SimoneN64
2024-08-18 01:07:48 +02:00
parent 38859deaf1
commit acdb6b2210
2 changed files with 3 additions and 3 deletions

View File

@@ -9,13 +9,13 @@
namespace Util {
enum LogLevel : u8 {
Trace, Debug, Info, Warn, Error, Always
Trace, Debug, Warn, Info, Error, Always
};
#ifndef NDEBUG
static constexpr auto globalLogLevel = Debug;
#else
static constexpr auto globalLogLevel = Error;
static constexpr auto globalLogLevel = Info;
#endif
template <LogLevel messageType = Info, typename ...Args>