Move SysConf to Core

It's not common code that could be reused for, say, Citra;
it's absolutely specific to Wii emulation and only used by the Dolphin
core, so let's move it there.

Another reason for doing this is to avoid having Common depend on Core.
This commit is contained in:
Léo Lam
2018-03-11 11:43:54 +01:00
parent 0856d4a68a
commit a287bbc3bd
16 changed files with 14 additions and 14 deletions

View File

@ -11,11 +11,11 @@
#include "Common/Logging/Log.h"
#include "Common/NandPaths.h"
#include "Common/StringUtil.h"
#include "Common/SysConf.h"
#include "Core/ConfigManager.h"
#include "Core/IOS/IOS.h"
#include "Core/Movie.h"
#include "Core/NetPlayClient.h"
#include "Core/SysConf.h"
namespace Core
{