2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-03-23 20:55:32 +00:00
|
|
|
|
|
|
|
// 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/
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
#include "IniFile.h"
|
|
|
|
#include "Config.h"
|
2009-03-30 09:55:50 +00:00
|
|
|
#include "AudioCommon.h"
|
2010-02-02 21:56:29 +00:00
|
|
|
#include "FileUtil.h"
|
2009-03-30 09:55:50 +00:00
|
|
|
|
2009-07-28 16:20:54 +00:00
|
|
|
#define LLE_CONFIG_FILE "DSPLLE.ini"
|
|
|
|
|
2009-03-23 20:55:32 +00:00
|
|
|
CConfig g_Config;
|
|
|
|
|
|
|
|
CConfig::CConfig()
|
|
|
|
{
|
|
|
|
Load();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CConfig::Load()
|
|
|
|
{
|
|
|
|
// first load defaults
|
|
|
|
IniFile file;
|
2010-02-02 21:56:29 +00:00
|
|
|
file.Load((std::string(File::GetUserPath(D_CONFIG_IDX)) + LLE_CONFIG_FILE).c_str());
|
2009-03-30 09:55:50 +00:00
|
|
|
ac_Config.Load(file);
|
2009-03-23 20:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CConfig::Save()
|
|
|
|
{
|
|
|
|
IniFile file;
|
2010-02-02 21:56:29 +00:00
|
|
|
file.Load((std::string(File::GetUserPath(D_CONFIG_IDX)) + LLE_CONFIG_FILE).c_str());
|
2009-03-30 09:55:50 +00:00
|
|
|
ac_Config.Set(file);
|
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
file.Save((std::string(File::GetUserPath(D_CONFIG_IDX)) + LLE_CONFIG_FILE).c_str());
|
2009-03-23 20:55:32 +00:00
|
|
|
}
|