Utils: Rewrite fmt::split

This commit is contained in:
Eladash 2021-01-05 17:34:35 +02:00 committed by Ivan
parent 36159c2bd4
commit bf6f43ec3a
4 changed files with 27 additions and 18 deletions

View file

@ -45,7 +45,7 @@ avconf_manager::avconf_manager()
{
u32 curindex = 0;
auto mic_list = fmt::split(g_cfg.audio.microphone_devices, {"@@@"});
auto mic_list = fmt::split(g_cfg.audio.microphone_devices.to_string(), {"@@@"});
if (!mic_list.empty())
{
switch (g_cfg.audio.microphone_type)