mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-21 10:53:05 -06:00

Found via `codespell -q 3 -S "./Externals,./Data/Sys/wiitdb-??.txt,*.po,*.pot" -L andf,asnd,bootup,bufferin,clen,collet,datas,delt,fpr,inout,inport,interm,pixelx,re-use,re-used,sav,stateman,strat,wil`
25 lines
764 B
C++
25 lines
764 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
// This is a temporary solution, although they should be in their respective 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;
|
|
extern const Info<std::string> MAIN_CURRENT_STATE_PATH;
|
|
|
|
} // namespace Config
|