Fix location of config.dat on OSX.

Originally committed to SVN as r3588.
This commit is contained in:
Amar Takhar 2009-09-27 01:53:42 +00:00
parent 6a792f0635
commit eaf3353982
1 changed files with 3 additions and 3 deletions

View File

@ -30,10 +30,10 @@
Aegisub::Aegisub() {
wxStandardPathsBase &paths = wxStandardPaths::Get();
// Using ifdefs is a pain but it's much easier to centralise this.
#ifdef __UNIX__
#if defined(__APPLE__)
wxString configdir = wxString::Format("%s-%s", paths.GetUserDataDir(), _T(AEGISUB_VERSION_DATA));
#elif defined(__UNIX__)
wxString configdir = wxString::Format("%s/.aegisub-%s", paths.GetUserConfigDir(), _T(AEGISUB_VERSION_DATA));
#elif __APPLE__
wxString configdir = wxString::Format("%s/Aegisub-%s", paths.GetUserConfigDir(), _T(AEGISUB_VERSION_DATA));
#else
wxString configdir = wxString::Format("%s/Aegisub", paths.GetUserConfigDir());
#endif