emu/profiler.cpp: Disable assertion that profiler isn't enabled/disabled with profile scope active.

This commit is contained in:
Vas Crabb 2023-03-27 16:39:37 +11:00
parent 794a3d0ed9
commit d2f8af5301

View File

@ -91,7 +91,8 @@ real_profiler_state::real_profiler_state()
void real_profiler_state::reset(bool enabled) noexcept
{
assert(!m_filoptr || (m_filoptr == m_filo));
// disabling the profiler from the UI happens while PROFILER_EXTRA is active
//assert(!m_filoptr || (m_filoptr == m_filo));
m_text_time = attotime::never;