Create the default config path on start-up and renamed the app "vbam" to be consistent with the sdl build.

This commit is contained in:
skidau 2015-05-21 13:06:15 +00:00
parent 5c6ef13d8c
commit 3f9d927103
1 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,7 @@ static void tack_full_path(wxString &s, const wxString &app = wxEmptyString)
bool wxvbamApp::OnInit()
{
// use consistent names for config
SetAppName(_("VBA-M"));
SetAppName(_("vbam"));
#if (wxMAJOR_VERSION >= 3)
SetAppDisplayName(_T("VisualBoyAdvance-M"));
#endif
@ -153,6 +153,9 @@ bool wxvbamApp::OnInit()
// only the path part gets created
// note that 0777 is default (assumes umask will do og-w)
s.Mkdir(0777, wxPATH_MKDIR_FULL);
s = wxStandardPaths::Get().GetUserLocalDataDir();
s.AppendDir(s.GetFullName());
s.Mkdir(0777, wxPATH_MKDIR_FULL);
}
load_opts();