1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

Fix mic device default in config

This commit is contained in:
RipleyTom 2021-02-17 14:24:41 +01:00 committed by Ivan
parent 1446254a03
commit 6786734d95

View File

@ -239,7 +239,7 @@ struct cfg_root : cfg::node
cfg::_bool enable_time_stretching{ this, "Enable Time Stretching", false, true }; 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::_int<0, 100> time_stretching_threshold{ this, "Time Stretching Threshold", 75, true };
cfg::_enum<microphone_handler> microphone_type{ this, "Microphone Type", microphone_handler::null }; cfg::_enum<microphone_handler> microphone_type{ this, "Microphone Type", microphone_handler::null };
cfg::string microphone_devices{ this, "Microphone Devices", ";;;;" }; cfg::string microphone_devices{ this, "Microphone Devices", "@@@@@@@@@@@@" };
} audio{ this }; } audio{ this };
struct node_io : cfg::node struct node_io : cfg::node