mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-07-03 15:00:47 -07:00
Merge pull request #6539 from lat9nq/default-setting
general: Move most settings' defaults and labels into their definition
This commit is contained in:
@ -15,10 +15,10 @@
|
||||
namespace Debugger {
|
||||
void ToggleConsole() {
|
||||
static bool console_shown = false;
|
||||
if (console_shown == UISettings::values.show_console) {
|
||||
if (console_shown == UISettings::values.show_console.GetValue()) {
|
||||
return;
|
||||
} else {
|
||||
console_shown = UISettings::values.show_console;
|
||||
console_shown = UISettings::values.show_console.GetValue();
|
||||
}
|
||||
|
||||
#if defined(_WIN32) && !defined(_DEBUG)
|
||||
|
Reference in New Issue
Block a user