mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Merge pull request #6747 from aldelaro5/qt-debugger-setting-ini
INI: Create a new INI setting for toggling the debugger UI
This commit is contained in:
@ -105,7 +105,6 @@ int main(int argc, char* argv[])
|
||||
UICommon::CreateDirectories();
|
||||
UICommon::Init();
|
||||
Resources::Init();
|
||||
Settings::Instance().SetDebugModeEnabled(options.is_set("debugger"));
|
||||
Settings::Instance().SetBatchModeEnabled(options.is_set("batch"));
|
||||
|
||||
// Hook up alerts from core
|
||||
@ -148,6 +147,8 @@ int main(int argc, char* argv[])
|
||||
DolphinAnalytics::Instance()->ReportDolphinStart("qt");
|
||||
|
||||
MainWindow win{std::move(boot)};
|
||||
if (options.is_set("debugger"))
|
||||
Settings::Instance().SetDebugModeEnabled(true);
|
||||
win.show();
|
||||
|
||||
#if defined(USE_ANALYTICS) && USE_ANALYTICS
|
||||
|
Reference in New Issue
Block a user