mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +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
|
@ -23,6 +23,7 @@ public:
|
|||
private:
|
||||
bool OnInit() override;
|
||||
void OnInitCmdLine(wxCmdLineParser& parser) override;
|
||||
bool OnCmdLineParsed(wxCmdLineParser& parser) override;
|
||||
int OnExit() override;
|
||||
void OnFatalException() override;
|
||||
bool Initialize(int& c, wxChar** v) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue