mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
WX: Fix argument parsing
Manually convert each argument to a UTF-8 std::string, because the implicit conversion for wxCmdLineArgsArray to char** calls ToAscii (which is obviously undesired). Fixes https://bugs.dolphin-emu.org/issues/10274
This commit is contained in:
parent
96e094e127
commit
60afb1d1b4
3 changed files with 28 additions and 5 deletions
|
@ -105,17 +105,29 @@ std::unique_ptr<optparse::OptionParser> CreateParser(ParserOptions options)
|
|||
return parser;
|
||||
}
|
||||
|
||||
optparse::Values& ParseArguments(optparse::OptionParser* parser, int argc, char** argv)
|
||||
static void AddConfigLayer(const optparse::Values& options)
|
||||
{
|
||||
optparse::Values& options = parser->parse_args(argc, argv);
|
||||
|
||||
const std::list<std::string>& config_args = options.all("config");
|
||||
if (config_args.size())
|
||||
if (!config_args.empty())
|
||||
{
|
||||
Config::AddLayer(std::make_unique<CommandLineConfigLayerLoader>(
|
||||
config_args, static_cast<const char*>(options.get("video_backend")),
|
||||
static_cast<const char*>(options.get("audio_emulation"))));
|
||||
}
|
||||
}
|
||||
|
||||
optparse::Values& ParseArguments(optparse::OptionParser* parser, int argc, char** argv)
|
||||
{
|
||||
optparse::Values& options = parser->parse_args(argc, argv);
|
||||
AddConfigLayer(options);
|
||||
return options;
|
||||
}
|
||||
|
||||
optparse::Values& ParseArguments(optparse::OptionParser* parser,
|
||||
const std::vector<std::string>& arguments)
|
||||
{
|
||||
optparse::Values& options = parser->parse_args(arguments);
|
||||
AddConfigLayer(options);
|
||||
return options;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue