CPU/CodeCache: Fix uninitialized pointers

This commit is contained in:
Connor McLaughlin 2020-04-20 12:35:57 +10:00
parent badfe6117e
commit 4655aa02f8
1 changed files with 3 additions and 3 deletions

View File

@ -133,9 +133,9 @@ private:
void InterpretCachedBlock(const CodeBlock& block);
void InterpretUncachedBlock();
System* m_system;
Core* m_core;
Bus* m_bus;
System* m_system = nullptr;
Core* m_core = nullptr;
Bus* m_bus = nullptr;
#ifdef WITH_RECOMPILER
std::unique_ptr<JitCodeBuffer> m_code_buffer;