mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 09:51:58 +00:00
Config: Port dual core setting to new config system.
This commit is contained in:
parent
e5ef597642
commit
d8825f5635
13 changed files with 50 additions and 48 deletions
|
@ -3,6 +3,8 @@
|
|||
|
||||
#include "Core/System.h"
|
||||
|
||||
#include "Core/Config/MainSettings.h"
|
||||
|
||||
namespace Core
|
||||
{
|
||||
struct System::Impl
|
||||
|
@ -14,4 +16,9 @@ System::System() : m_impl{std::make_unique<Impl>()}
|
|||
}
|
||||
|
||||
System::~System() = default;
|
||||
|
||||
void System::Initialize()
|
||||
{
|
||||
m_separate_cpu_and_gpu_threads = Config::Get(Config::MAIN_CPU_THREAD);
|
||||
}
|
||||
} // namespace Core
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue