Fix things mentioned during code review

Ref: https://github.com/dolphin-emu/dolphin/pull/4917
This commit is contained in:
Léo Lam
2017-02-16 16:58:40 +01:00
parent abe6f8766a
commit 88a21dd2b9
12 changed files with 876 additions and 721 deletions

View 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,
};
}