MusicMod: Added DSP HLE option to turn off streaming music for use together with the MusicMod

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3511 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson
2009-06-20 12:19:53 +00:00
parent 8cdd8cf2a7
commit 0a648b59e4
6 changed files with 166 additions and 52 deletions

View File

@ -37,6 +37,7 @@ void CConfig::Load()
file.Load(FULL_CONFIG_DIR "DSP.ini");
file.Get("Config", "EnableHLEAudio", &m_EnableHLEAudio, true); // Sound Settings
file.Get("Config", "EnableRE0AudioFix", &m_EnableRE0Fix, false); // RE0 Hack
file.Get("Config", "DisableStreaming", &m_DisableStreaming, false); // Music hack
ac_Config.Load(file);
}
@ -46,6 +47,7 @@ void CConfig::Save()
file.Load(FULL_CONFIG_DIR "DSP.ini");
file.Set("Config", "EnableHLEAudio", m_EnableHLEAudio); // Sound Settings
file.Set("Config", "EnableRE0AudioFix", m_EnableRE0Fix); // RE0 Hack
file.Set("Config", "DisableStreaming", m_DisableStreaming); // Music hack
ac_Config.Set(file);
file.Save(FULL_CONFIG_DIR "DSP.ini");