zeropad: Properly setup the path of the ini file.

+ metadata of my previous zz merge


git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3875 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut@gmail.com 2010-10-04 22:09:46 +00:00
parent 46b526976f
commit b93d9617cd
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ void SaveConfig()
int i, j;
FILE *f;
const std::string iniFile(s_strIniPath + "zeropad.ini");
const std::string iniFile(s_strIniPath + "/zeropad.ini");
f = fopen(iniFile.c_str(), "w");
if (f == NULL)
{
@ -85,7 +85,7 @@ void LoadConfig()
conf.keys[0][15] = XK_s; // LEFT
conf.log = 0;
const std::string iniFile(s_strIniPath + "zeropad.ini");
const std::string iniFile(s_strIniPath + "/zeropad.ini");
f = fopen(iniFile.c_str(), "r");
if (f == NULL)
{