mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-01 16:02:39 +00:00
Njoy can now be build with wxUSE_UNICODE 1 on windows
move all static ini paths to Common git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3896 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
989e5b7798
commit
22427f89bc
16 changed files with 96 additions and 78 deletions
|
@ -20,8 +20,6 @@
|
|||
#include "Config.h"
|
||||
#include "AudioCommon.h"
|
||||
|
||||
#define LLE_CONFIG_FILE "DSPLLE.ini"
|
||||
|
||||
CConfig g_Config;
|
||||
|
||||
CConfig::CConfig()
|
||||
|
@ -32,18 +30,16 @@ CConfig::CConfig()
|
|||
void CConfig::Load()
|
||||
{
|
||||
// first load defaults
|
||||
std::string temp;
|
||||
|
||||
IniFile file;
|
||||
file.Load(FULL_CONFIG_DIR LLE_CONFIG_FILE);
|
||||
file.Load(DSPLLE_CONFIG_FILE);
|
||||
ac_Config.Load(file);
|
||||
}
|
||||
|
||||
void CConfig::Save()
|
||||
{
|
||||
IniFile file;
|
||||
file.Load(FULL_CONFIG_DIR LLE_CONFIG_FILE);
|
||||
file.Load(DSPLLE_CONFIG_FILE);
|
||||
ac_Config.Set(file);
|
||||
|
||||
file.Save(FULL_CONFIG_DIR LLE_CONFIG_FILE);
|
||||
file.Save(DSPLLE_CONFIG_FILE);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue