mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 15:15:40 +00:00
CPU/CodeCache: Don't leak blocks on flush
This commit is contained in:
parent
86df077ffe
commit
7a87b9b5bb
|
@ -142,6 +142,8 @@ void CodeCache::Flush()
|
||||||
for (auto& it : m_ram_block_map)
|
for (auto& it : m_ram_block_map)
|
||||||
it.clear();
|
it.clear();
|
||||||
|
|
||||||
|
for (const auto& it : m_blocks)
|
||||||
|
delete it.second;
|
||||||
m_blocks.clear();
|
m_blocks.clear();
|
||||||
#ifdef WITH_RECOMPILER
|
#ifdef WITH_RECOMPILER
|
||||||
m_code_buffer->Reset();
|
m_code_buffer->Reset();
|
||||||
|
|
Loading…
Reference in a new issue