mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 08:25:16 +00: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