citra_qt: only toggle console if the setting has been changed

This commit is contained in:
wwylele 2018-06-30 13:07:30 +03:00
parent f9a89ff410
commit 810b86f451

View File

@ -14,6 +14,16 @@
namespace Debugger {
void ToggleConsole() {
static bool first_call = true, console_shown = true;
if (!first_call) {
if (console_shown == UISettings::values.show_console) {
return;
} else {
console_shown = UISettings::values.show_console;
}
} else {
first_call = false;
}
#ifdef _WIN32
FILE* temp;
if (UISettings::values.show_console) {