mirror of https://github.com/PCSX2/pcsx2.git
Fixed Issue 384 - minor compilation error in linux when using local inis.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1715 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
297a8a97cf
commit
5706a23ca2
|
@ -50,7 +50,7 @@ int main(int argc, const char *argv[])
|
|||
Path::CreateDirectory("~/.pcsx2");
|
||||
Path::ChangeDirectory("~/.pcsx2");
|
||||
Path::CreateDirectory(DEFAULT_INIS_DIR);
|
||||
Config.Paths.Inis = "~/.pcsx2/" + DEFAULT_INIS_DIR + "/";
|
||||
Config.Paths.Inis = "~/.pcsx2/" + string(DEFAULT_INIS_DIR) + "/";
|
||||
sprintf(cfgfile, "%s/pcsx2.cfg", Config.Paths.Inis.c_str());
|
||||
Path::ChangeDirectory(Config.Paths.Working);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue