2008-12-08 05:25:12 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-05-10 12:33:47 +00:00
|
|
|
#include "Globals.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
#include "Common.h"
|
|
|
|
#include "IniFile.h"
|
|
|
|
#include "Config.h"
|
2009-03-30 09:55:50 +00:00
|
|
|
#include "AudioCommon.h"
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
CConfig g_Config;
|
|
|
|
|
|
|
|
CConfig::CConfig()
|
|
|
|
{
|
|
|
|
Load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CConfig::Load()
|
|
|
|
{
|
|
|
|
// first load defaults
|
2009-01-29 00:57:55 +00:00
|
|
|
std::string temp;
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
IniFile file;
|
|
|
|
file.Load(FULL_CONFIG_DIR "DSP.ini");
|
|
|
|
file.Get("Config", "EnableHLEAudio", &m_EnableHLEAudio, true); // Sound Settings
|
2009-05-10 10:55:33 +00:00
|
|
|
file.Get("Config", "EnableRE0AudioFix", &m_EnableRE0Fix, false); // RE0 Hack
|
2009-03-30 09:55:50 +00:00
|
|
|
ac_Config.Load(file);
|
2008-12-08 05:25:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CConfig::Save()
|
|
|
|
{
|
|
|
|
IniFile file;
|
|
|
|
file.Load(FULL_CONFIG_DIR "DSP.ini");
|
|
|
|
file.Set("Config", "EnableHLEAudio", m_EnableHLEAudio); // Sound Settings
|
2009-05-10 10:55:33 +00:00
|
|
|
file.Set("Config", "EnableRE0AudioFix", m_EnableRE0Fix); // RE0 Hack
|
2009-03-30 09:55:50 +00:00
|
|
|
ac_Config.Set(file);
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
file.Save(FULL_CONFIG_DIR "DSP.ini");
|
|
|
|
}
|
2009-05-10 12:33:47 +00:00
|
|
|
|
|
|
|
void CConfig::GameIniLoad() {
|
|
|
|
IniFile *iniFile = ((struct SConfig *)globals->config)->m_LocalCoreStartupParameter.gameIni;
|
|
|
|
if (! iniFile)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (iniFile->Exists("HLEaudio", "UseRE0Fix"))
|
|
|
|
iniFile->Get("HLEaudio", "UseRE0Fix", &m_EnableRE0Fix, 0);
|
|
|
|
}
|
|
|
|
|