CPU/CodeCache: Fix uninitialized pointers
This commit is contained in:
parent
badfe6117e
commit
4655aa02f8
|
@ -133,9 +133,9 @@ private:
|
||||||
void InterpretCachedBlock(const CodeBlock& block);
|
void InterpretCachedBlock(const CodeBlock& block);
|
||||||
void InterpretUncachedBlock();
|
void InterpretUncachedBlock();
|
||||||
|
|
||||||
System* m_system;
|
System* m_system = nullptr;
|
||||||
Core* m_core;
|
Core* m_core = nullptr;
|
||||||
Bus* m_bus;
|
Bus* m_bus = nullptr;
|
||||||
|
|
||||||
#ifdef WITH_RECOMPILER
|
#ifdef WITH_RECOMPILER
|
||||||
std::unique_ptr<JitCodeBuffer> m_code_buffer;
|
std::unique_ptr<JitCodeBuffer> m_code_buffer;
|
||||||
|
|
Loading…
Reference in New Issue