mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-09-07 17:16:00 -05:00
Explicitly cast enum class to int
This commit is contained in:
@@ -39,7 +39,8 @@ void MacroActionAudio::LogAction()
|
||||
it->second.c_str(),
|
||||
GetWeakSourceName(_audioSource).c_str());
|
||||
} else {
|
||||
blog(LOG_WARNING, "ignored unknown audio action %d", _action);
|
||||
blog(LOG_WARNING, "ignored unknown audio action %d",
|
||||
static_cast<int>(_action));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user