git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6496
d7cf8633-e32d-0410-b094-
e92efae38249
// If the base directory is explicitly defined by the compilation process
#ifdef DP_FS_BASEDIR
strcpy(fs_basedir, DP_FS_BASEDIR);
-
#else
strcpy(fs_basedir, "");
+#endif
#ifdef MACOSX
// FIXME: is there a better way to find the directory outside the .app?
- if (strstr(com_argv[0], ".app/"))
+ if (!fs_basedir[0] && strstr(com_argv[0], ".app/"))
{
char *split;
strlcpy(fs_basedir, com_argv[0], sizeof(fs_basedir));
fs_basedir[split - com_argv[0]] = 0;
}
-#endif
#endif
PK3_OpenLibrary ();