mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-07-04 09:40:27 -05:00
They are unused, since there is no C++ code that touches these settings. See the discussion in PR 9152, which is a PR that adds a lot more Android-specific settings.
25 lines
730 B
C++
25 lines
730 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
// This is a temporary soluation, although they should be in their repected cpp file in UICommon.
|
|
// However, in order for IsSettingSaveable to compile without some issues, this needs to be here.
|
|
// Once IsSettingSaveable is removed, then you should able to move these back to UICommon.
|
|
|
|
namespace Config
|
|
{
|
|
// Configuration Information
|
|
|
|
// UI.General
|
|
|
|
extern const Info<bool> MAIN_USE_DISCORD_PRESENCE;
|
|
extern const Info<bool> MAIN_USE_GAME_COVERS;
|
|
extern const Info<bool> MAIN_FOCUSED_HOTKEYS;
|
|
extern const Info<bool> MAIN_RECURSIVE_ISO_PATHS;
|
|
|
|
} // namespace Config
|