mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
Utils: Rewrite fmt::split
This commit is contained in:
parent
36159c2bd4
commit
bf6f43ec3a
4 changed files with 27 additions and 18 deletions
|
@ -125,7 +125,7 @@ void mic_context::operator()()
|
|||
|
||||
void mic_context::load_config_and_init()
|
||||
{
|
||||
auto device_list = fmt::split(g_cfg.audio.microphone_devices, {"@@@"});
|
||||
auto device_list = fmt::split(g_cfg.audio.microphone_devices.to_string(), {"@@@"});
|
||||
|
||||
if (!device_list.empty() && mic_list.empty())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue