From 6786734d959cc47492884b91b57139a098d3c2c7 Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Wed, 17 Feb 2021 14:24:41 +0100 Subject: [PATCH] Fix mic device default in config --- rpcs3/Emu/system_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index cdec6c43b0..a0153e0729 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -239,7 +239,7 @@ struct cfg_root : cfg::node cfg::_bool enable_time_stretching{ this, "Enable Time Stretching", false, true }; cfg::_int<0, 100> time_stretching_threshold{ this, "Time Stretching Threshold", 75, true }; cfg::_enum microphone_type{ this, "Microphone Type", microphone_handler::null }; - cfg::string microphone_devices{ this, "Microphone Devices", ";;;;" }; + cfg::string microphone_devices{ this, "Microphone Devices", "@@@@@@@@@@@@" }; } audio{ this }; struct node_io : cfg::node