mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06: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:
@ -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);
|
LLE::DumpDSPCode(ptr, size, g_dsp.iram_crc);
|
||||||
#endif
|
}
|
||||||
|
|
||||||
Symbols::Clear();
|
Symbols::Clear();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user