mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +00:00
DSP-LLE: dump code if m_DumpUCode instead of DEBUG
This change makes the behavior consistent with that of DSP-HLE.
This commit is contained in:
parent
ed5e98c3cc
commit
edb16cd399
1 changed files with 4 additions and 3 deletions
|
@ -60,9 +60,10 @@ void CodeLoaded(const u8* ptr, int size)
|
||||||
{
|
{
|
||||||
g_dsp.iram_crc = HashEctor(ptr, size);
|
g_dsp.iram_crc = HashEctor(ptr, size);
|
||||||
|
|
||||||
#if defined(_DEBUG) || defined(DEBUGFAST)
|
if (SConfig::GetInstance().m_DumpUCode)
|
||||||
LLE::DumpDSPCode(ptr, size, g_dsp.iram_crc);
|
{
|
||||||
#endif
|
LLE::DumpDSPCode(ptr, size, g_dsp.iram_crc);
|
||||||
|
}
|
||||||
|
|
||||||
Symbols::Clear();
|
Symbols::Clear();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue