Updated docs on PHYSFS_setSaneConfig().
This commit is contained in:
parent
af4bf8419f
commit
de54065b31
|
@ -915,12 +915,12 @@ PHYSFS_DECL char **PHYSFS_getSearchPath(void);
|
||||||
*
|
*
|
||||||
* Helper function.
|
* 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.
|
* created if it doesn't exist.
|
||||||
*
|
*
|
||||||
* The above is sufficient to make sure your program's configuration directory
|
* The above is sufficient to make sure your program's configuration directory
|
||||||
* is separated from other clutter, and platform-independent. The period
|
* is separated from other clutter, and platform-independent.
|
||||||
* before "mygame" even hides the directory on Unix systems.
|
|
||||||
*
|
*
|
||||||
* The search path will be:
|
* The search path will be:
|
||||||
*
|
*
|
||||||
|
@ -933,7 +933,8 @@ PHYSFS_DECL char **PHYSFS_getSearchPath(void);
|
||||||
* be added to the search path. If you specified "PKG" for (archiveExt), and
|
* 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
|
* 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
|
* 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 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.
|
* all for you. Feel free to add more to the search path manually, too.
|
||||||
|
|
Loading…
Reference in New Issue