mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 15:45:46 +00:00
yuzu - Fix duplicate logs
This commit is contained in:
parent
bed23a6e25
commit
ca04901b0f
2 changed files with 7 additions and 2 deletions
|
@ -14,6 +14,13 @@
|
|||
|
||||
namespace Debugger {
|
||||
void ToggleConsole() {
|
||||
static bool console_shown = false;
|
||||
if (console_shown == UISettings::values.show_console) {
|
||||
return;
|
||||
} else {
|
||||
console_shown = UISettings::values.show_console;
|
||||
}
|
||||
|
||||
#if defined(_WIN32) && !defined(_DEBUG)
|
||||
FILE* temp;
|
||||
if (UISettings::values.show_console) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue