From 594cfefeedae7e5facfb57466e11d8970f658af0 Mon Sep 17 00:00:00 2001 From: QwertyChouskie Date: Tue, 24 Dec 2019 18:44:28 -0800 Subject: [PATCH] Fix CMD flags in main.cpp (#4180) Came across these when working in my branch. --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 50918fe0f..f831ea1b2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -764,11 +764,11 @@ int handleCmdLinePreliminary() UserConfigParams::m_verbosity |= UserConfigParams::LOG_MEMORY; if(CommandLine::has("--debug=addons")) UserConfigParams::m_verbosity |= UserConfigParams::LOG_ADDONS; - if(CommandLine::has("--debug=mgui")) + if(CommandLine::has("--debug=gui")) UserConfigParams::m_verbosity |= UserConfigParams::LOG_GUI; if(CommandLine::has("--debug=flyable")) UserConfigParams::m_verbosity |= UserConfigParams::LOG_FLYABLE; - if(CommandLine::has("--debug=mist")) + if(CommandLine::has("--debug=misc")) UserConfigParams::m_verbosity |= UserConfigParams::LOG_MISC; if(CommandLine::has("--debug=all") ) UserConfigParams::m_verbosity |= UserConfigParams::LOG_ALL;