mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-01 04:18:05 -05:00
I moved it from the main settings screen to the in-game menu in PR 8439 so that it could be changed while a game is running, but now that the main settings can be accessed while a game is running, there's no reason to not put it in the main settings. https://bugs.dolphin-emu.org/issues/12067
26 lines
908 B
C++
26 lines
908 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included
|
|
|
|
#include "Core/Config/UISettings.h"
|
|
|
|
namespace Config
|
|
{
|
|
// UI.General
|
|
|
|
const Info<bool> MAIN_USE_DISCORD_PRESENCE{{System::Main, "General", "UseDiscordPresence"}, true};
|
|
#ifdef ANDROID
|
|
const Info<bool> MAIN_USE_GAME_COVERS{{System::Main, "General", "UseGameCovers"}, true};
|
|
#else
|
|
const Info<bool> MAIN_USE_GAME_COVERS{{System::Main, "General", "UseGameCovers"}, false};
|
|
#endif
|
|
const Info<bool> MAIN_FOCUSED_HOTKEYS{{System::Main, "General", "HotkeysRequireFocus"}, true};
|
|
const Info<bool> MAIN_RECURSIVE_ISO_PATHS{{System::Main, "General", "RecursiveISOPaths"}, false};
|
|
|
|
// UI.Android
|
|
|
|
const Info<int> MAIN_LAST_PLATFORM_TAB{{System::Main, "Android", "LastPlatformTab"}, 0};
|
|
const Info<int> MAIN_EMULATION_ORIENTATION{{System::Main, "Android", "EmulationOrientation"}, 0};
|
|
|
|
} // namespace Config
|