mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +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
|
@ -13,7 +13,6 @@
|
|||
|
||||
#include "Common/ChunkFile.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/Config/Config.h"
|
||||
#include "Common/Event.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/Logging/Log.h"
|
||||
|
@ -21,6 +20,7 @@
|
|||
#include "Core/Config/MainSettings.h"
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/Core.h"
|
||||
#include "Core/System.h"
|
||||
|
||||
// TODO: ugly
|
||||
#ifdef _WIN32
|
||||
|
@ -289,7 +289,7 @@ void VideoBackendBase::PopulateBackendInfoFromUI()
|
|||
|
||||
void VideoBackendBase::DoState(PointerWrap& p)
|
||||
{
|
||||
if (!SConfig::GetInstance().bCPUThread)
|
||||
if (!Core::System::GetInstance().IsDualCoreMode())
|
||||
{
|
||||
VideoCommon_DoState(p);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue