Skip to content

Commit

Permalink
Jit: Allow BLR optimization without fastmem
Browse files Browse the repository at this point in the history
I don't see why not. It's not reliant on fastmem.
  • Loading branch information
JosJuice committed Jul 30, 2023
1 parent bed3874 commit a64362b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/JitCommon/JitBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ void JitBase::RefreshConfig()

void JitBase::InitBLROptimization()
{
m_enable_blr_optimization = jo.enableBlocklink && m_fastmem_enabled && !m_enable_debugging;
m_enable_blr_optimization = jo.enableBlocklink && !m_enable_debugging;
m_cleanup_after_stackfault = false;
}

Expand Down

0 comments on commit a64362b

Please sign in to comment.