mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
DolphinWX: provide empty OnCmdLineParsed
Starting in #4916, upon startup wxWidgets pops up an assertion error: > ./src/common/cmdline.cpp(527): assert ""Assert failure"" failed in > FindOptionByAnyName(): Unknown option verbose Fix this by overriding wxApp::OnCmdLineParsed to disable the default handling (since we also disable the default options in DolphinApp::OnInitCmdLine).
This commit is contained in:
parent
7bcff99d89
commit
a3e3986906
2 changed files with 6 additions and 0 deletions
|
@ -84,6 +84,11 @@ void DolphinApp::OnInitCmdLine(wxCmdLineParser& parser)
|
|||
parser.SetCmdLine("");
|
||||
}
|
||||
|
||||
bool DolphinApp::OnCmdLineParsed(wxCmdLineParser& parser)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DolphinApp::OnInit()
|
||||
{
|
||||
std::lock_guard<std::mutex> lk(s_init_mutex);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue