1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <array>
namespace Config
{
// Layers in ascending order of priority.
enum class LayerType
{
Base,
CommandLine,
GlobalGame,
LocalGame,
Movie,
Netplay,
CurrentRun,
Meta,
};
enum class System
{
Main,
SYSCONF,
GCPad,
WiiPad,
GCKeyboard,
GFX,
Logger,
DualShockUDPClient,
FreeLook,
Session,
GameSettingsOnly,
Achievements,
};
constexpr std::array<LayerType, 7> SEARCH_ORDER{{
LayerType::CurrentRun,
LayerType::Netplay,
LayerType::Movie,
LayerType::LocalGame,
LayerType::GlobalGame,
LayerType::CommandLine,
LayerType::Base,
}};
} // namespace Config
|