mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-09 03:58:06 +03:00
DSP: Add support for PCAP logging of CPU<->DSP communications
This commit is contained in:
parent
7889d90633
commit
add090bde6
11 changed files with 224 additions and 13 deletions
|
@ -326,6 +326,7 @@ void SConfig::SaveDSPSettings(IniFile& ini)
|
|||
dsp->Set("DumpAudio", m_DumpAudio);
|
||||
dsp->Set("Backend", sBackend);
|
||||
dsp->Set("Volume", m_Volume);
|
||||
dsp->Set("CaptureLog", m_DSPCaptureLog);
|
||||
}
|
||||
|
||||
void SConfig::SaveFifoPlayerSettings(IniFile& ini)
|
||||
|
@ -552,6 +553,7 @@ void SConfig::LoadDSPSettings(IniFile& ini)
|
|||
dsp->Get("Backend", &sBackend, BACKEND_NULLSOUND);
|
||||
#endif
|
||||
dsp->Get("Volume", &m_Volume, 100);
|
||||
dsp->Get("CaptureLog", &m_DSPCaptureLog, false);
|
||||
}
|
||||
|
||||
void SConfig::LoadFifoPlayerSettings(IniFile& ini)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue