mirror of
https://github.com/dolphin-emu/dolphin
synced 2025-10-06 00:13:03 +02:00
Merge pull request #13954 from TryTwo/debug_crash_fix
Crash fix: Add debug check to JIT Profiling bool.
This commit is contained in:
@@ -197,7 +197,7 @@ public:
|
|||||||
JitBase& operator=(JitBase&&) = delete;
|
JitBase& operator=(JitBase&&) = delete;
|
||||||
~JitBase() override;
|
~JitBase() override;
|
||||||
|
|
||||||
bool IsProfilingEnabled() const { return m_enable_profiling; }
|
bool IsProfilingEnabled() const { return m_enable_profiling && m_enable_debugging; }
|
||||||
bool IsDebuggingEnabled() const { return m_enable_debugging; }
|
bool IsDebuggingEnabled() const { return m_enable_debugging; }
|
||||||
|
|
||||||
static const u8* Dispatch(JitBase& jit);
|
static const u8* Dispatch(JitBase& jit);
|
||||||
|
Reference in New Issue
Block a user