citra_qt: only toggle console if the setting has been changed
This commit is contained in:
parent
f9a89ff410
commit
810b86f451
@ -14,6 +14,16 @@
|
|||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
void ToggleConsole() {
|
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
|
#ifdef _WIN32
|
||||||
FILE* temp;
|
FILE* temp;
|
||||||
if (UISettings::values.show_console) {
|
if (UISettings::values.show_console) {
|
||||||
|
Loading…
Reference in New Issue
Block a user