mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
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:
parent
8cdd8cf2a7
commit
0a648b59e4
6 changed files with 166 additions and 52 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue