Skip to content

Commit

Permalink
Updated docs on PHYSFS_setSaneConfig().
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Mar 24, 2012
1 parent af4bf84 commit de54065
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/physfs.h
Expand Up @@ -915,12 +915,12 @@ PHYSFS_DECL char **PHYSFS_getSearchPath(void);
*
* Helper function.
*
* The write dir will be set to "userdir/.organization/appName", which is
* The write dir will be set to the pref dir returned by
* \code PHYSFS_getPrefDir(organization, appName) \endcode, which is
* created if it doesn't exist.
*
* The above is sufficient to make sure your program's configuration directory
* is separated from other clutter, and platform-independent. The period
* before "mygame" even hides the directory on Unix systems.
* is separated from other clutter, and platform-independent.
*
* The search path will be:
*
Expand All @@ -933,7 +933,8 @@ PHYSFS_DECL char **PHYSFS_getSearchPath(void);
* be added to the search path. If you specified "PKG" for (archiveExt), and
* there's a file named data.PKG in the base dir, it'll be checked. Archives
* can either be appended or prepended to the search path in alphabetical
* order, regardless of which directories they were found in.
* order, regardless of which directories they were found in. All archives
* are mounted in the root of the virtual file system ("/").
*
* All of this can be accomplished from the application, but this just does it
* all for you. Feel free to add more to the search path manually, too.
Expand Down

0 comments on commit de54065

Please sign in to comment.