mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
CachedInterpreter: avoid uninitialized value
(The CachedInterpreter backend does not support block linking yet.)
This commit is contained in:
@ -10,6 +10,8 @@ void CachedInterpreter::Init()
|
|||||||
{
|
{
|
||||||
m_code.reserve(CODE_SIZE / sizeof(Instruction));
|
m_code.reserve(CODE_SIZE / sizeof(Instruction));
|
||||||
|
|
||||||
|
jo.enableBlocklink = false;
|
||||||
|
|
||||||
JitBaseBlockCache::Init();
|
JitBaseBlockCache::Init();
|
||||||
|
|
||||||
code_block.m_stats = &js.st;
|
code_block.m_stats = &js.st;
|
||||||
|
Reference in New Issue
Block a user