Skip to content

Commit

Permalink
Disabled the dual-core and the mmu hijacks as the gain wasn't enough …
Browse files Browse the repository at this point in the history
…to justify the performance impact
  • Loading branch information
NarryG committed Jan 2, 2018
1 parent 4a40cef commit 3f6043e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Source/Core/Core/ConfigManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ struct SConfig

int iTimingVariance = 40; // in milli secounds
//narrysmod_hijack
bool bCPUThread = false;
//1-2-2018 HIJACK DISABLED BECAUSE I DON'T THINK IT WAS REALLY WORTH THE PERFORMANCE IMPACT. DIDN'T SEEM TO IMPROVE ANYTHING
bool bCPUThread = true;
bool bDSPThread = false;
bool bDSPHLE = true;
bool bSyncGPUOnSkipIdleHack = true;
Expand All @@ -116,7 +117,8 @@ struct SConfig
bool bRunCompareClient = false;

//Narrysmod_Hijack. Enable mmu by default to handle bad calls.
bool bMMU = true;
//1-2-2018 HIJACK DISABLED BECAUSE I DON'T THINK IT WAS REALLY WORTH THE PERFORMANCE IMPACT. DIDN'T SEEM TO IMPROVE ANYTHING
bool bMMU = false;

bool bDCBZOFF = false;
bool bLowDCBZHack = false;
Expand Down

0 comments on commit 3f6043e

Please sign in to comment.