mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-19 04:21:19 +01:00
16 lines
456 B
C++
16 lines
456 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 ConfigInfo<bool> MAIN_USE_DISCORD_PRESENCE{{System::Main, "General", "UseDiscordPresence"},
|
|
true};
|
|
const ConfigInfo<bool> MAIN_USE_GAME_COVERS{{System::Main, "General", "UseGameCovers"}, false};
|
|
|
|
} // namespace Config
|