mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
revert part of r3896
bad decision to move all ini paths to common git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3897 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -20,6 +20,8 @@
|
||||
#include "Config.h"
|
||||
#include "AudioCommon.h"
|
||||
|
||||
#define LLE_CONFIG_FILE "DSPLLE.ini"
|
||||
|
||||
CConfig g_Config;
|
||||
|
||||
CConfig::CConfig()
|
||||
@ -31,15 +33,15 @@ void CConfig::Load()
|
||||
{
|
||||
// first load defaults
|
||||
IniFile file;
|
||||
file.Load(DSPLLE_CONFIG_FILE);
|
||||
file.Load(FULL_CONFIG_DIR LLE_CONFIG_FILE);
|
||||
ac_Config.Load(file);
|
||||
}
|
||||
|
||||
void CConfig::Save()
|
||||
{
|
||||
IniFile file;
|
||||
file.Load(DSPLLE_CONFIG_FILE);
|
||||
file.Load(FULL_CONFIG_DIR LLE_CONFIG_FILE);
|
||||
ac_Config.Set(file);
|
||||
|
||||
file.Save(DSPLLE_CONFIG_FILE);
|
||||
file.Save(FULL_CONFIG_DIR LLE_CONFIG_FILE);
|
||||
}
|
||||
|
Reference in New Issue
Block a user