mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
Convert LOG_TYPE and LOG_LEVELS to enum class
This commit is contained in:
parent
ba107819ec
commit
04d8cdfe88
46 changed files with 254 additions and 250 deletions
|
@ -29,7 +29,8 @@ static void LogCallback(const char* format, ...)
|
|||
const std::string message = StringFromFormatV(adapted_format.c_str(), args);
|
||||
va_end(args);
|
||||
|
||||
instance->Log(Common::Log::LNOTICE, Common::Log::AUDIO, filename, lineno, message.c_str());
|
||||
instance->Log(Common::Log::LogLevel::LNOTICE, Common::Log::LogType::AUDIO, filename, lineno,
|
||||
message.c_str());
|
||||
}
|
||||
|
||||
static void DestroyContext(cubeb* ctx)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue