diff --git a/src/core/cpu_code_cache.h b/src/core/cpu_code_cache.h index 4dd264782..90abf06aa 100644 --- a/src/core/cpu_code_cache.h +++ b/src/core/cpu_code_cache.h @@ -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 m_code_buffer;