mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
Merge pull request #3899 from wwylele/no-double-log
citra_qt: only toggle console if the setting has been changed
This commit is contained in:
commit
c1580c406d
@ -14,6 +14,13 @@
|
|||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
void ToggleConsole() {
|
void ToggleConsole() {
|
||||||
|
static bool console_shown = false;
|
||||||
|
if (console_shown == UISettings::values.show_console) {
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
console_shown = UISettings::values.show_console;
|
||||||
|
}
|
||||||
|
|
||||||
#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