early-access version 1838

This commit is contained in:
pineappleEA
2021-07-01 14:23:06 +02:00
parent 7482a950d9
commit 755af6b65b
40 changed files with 754 additions and 912 deletions
+2 -2
View File
@@ -15,10 +15,10 @@
namespace Debugger {
void ToggleConsole() {
static bool console_shown = false;
if (console_shown == UISettings::values.show_console.GetValue()) {
if (console_shown == UISettings::values.show_console) {
return;
} else {
console_shown = UISettings::values.show_console.GetValue();
console_shown = UISettings::values.show_console;
}
#if defined(_WIN32) && !defined(_DEBUG)