Update the URLs in several place to stop pointing to googlecode.
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@2069 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
11
src/setup.c
11
src/setup.c
@@ -178,9 +178,14 @@ void Set_config_directory(const char * program_dir, char * config_dir)
|
||||
const char* Config_SubDir = "GrafX2";
|
||||
config_parent_dir = getenv("APPDATA");
|
||||
#elif defined(__BEOS__) || defined(__HAIKU__)
|
||||
// "~/.grafx2", the BeOS way
|
||||
const char* Config_SubDir = ".grafx2";
|
||||
config_parent_dir = getenv("$HOME");
|
||||
// "`finddir B_USER_SETTINGS_DIRECTORY`/grafx2"
|
||||
const char* Config_SubDir = "grafx2";
|
||||
{
|
||||
static char parent[MAX_PATH_CHARACTERS];
|
||||
find_directory(B_USER_SETTINGS_DIRECTORY, 0, false, parent,
|
||||
MAX_PATH_CHARACTERS);
|
||||
config_parent_dir = parent;
|
||||
}
|
||||
#elif defined(__macosx__)
|
||||
// "~/Library/Preferences/com.googlecode.grafx2"
|
||||
const char* Config_SubDir = "Library/Preferences/com.googlecode.grafx2";
|
||||
|
||||
Reference in New Issue
Block a user