make the examples in the doc comments match the actual output of the SDL_GetPrefPath function

This commit is contained in:
Edward Rudd 2013-08-24 09:43:14 -04:00
parent e5b65e4e03
commit 5f45f4224f
1 changed files with 3 additions and 3 deletions

View File

@ -74,13 +74,13 @@ extern DECLSPEC char *SDLCALL SDL_GetBasePath(void);
* path to the directory in UTF-8 encoding. * path to the directory in UTF-8 encoding.
* *
* On Windows, the string might look like: * On Windows, the string might look like:
* "C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name" * "C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\"
* *
* On Linux, the string might look like: * On Linux, the string might look like:
* "/home/bob/.local/share/My Program Name" * "/home/bob/.local/share/My Program Name/"
* *
* On Mac OS X, the string might look like: * On Mac OS X, the string might look like:
* "/Users/bob/Library/Application Support/My Program Name" * "/Users/bob/Library/Application Support/My Program Name/"
* *
* (etc.) * (etc.)
* *