mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-01 15:16:22 +00:00
Fix things mentioned during code review
Ref: https://github.com/dolphin-emu/dolphin/pull/4917
This commit is contained in:
parent
abe6f8766a
commit
88a21dd2b9
12 changed files with 876 additions and 721 deletions
32
Source/Core/Common/Config/Enums.h
Normal file
32
Source/Core/Common/Config/Enums.h
Normal file
|
@ -0,0 +1,32 @@
|
|||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Config
|
||||
{
|
||||
enum class LayerType
|
||||
{
|
||||
Base,
|
||||
GlobalGame,
|
||||
LocalGame,
|
||||
Movie,
|
||||
Netplay,
|
||||
CommandLine,
|
||||
CurrentRun,
|
||||
Meta,
|
||||
};
|
||||
|
||||
enum class System
|
||||
{
|
||||
Main,
|
||||
GCPad,
|
||||
WiiPad,
|
||||
GCKeyboard,
|
||||
GFX,
|
||||
Logger,
|
||||
Debugger,
|
||||
UI,
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue