mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-02 08:51:57 +00:00
Use SDL to find Application Support path. #87
This commit is contained in:
parent
c76e9a26ef
commit
e1f8597360
1 changed files with 7 additions and 1 deletions
|
@ -49,6 +49,7 @@ If you have questions concerning this license or the applicable additional terms
|
||||||
#include <android/log.h>
|
#include <android/log.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "SDL2/SDL.h"
|
||||||
#include <sys/statvfs.h>
|
#include <sys/statvfs.h>
|
||||||
// RB end
|
// RB end
|
||||||
|
|
||||||
|
@ -93,7 +94,12 @@ static char exit_spawn[ 1024 ];
|
||||||
const char* Sys_DefaultSavePath()
|
const char* Sys_DefaultSavePath()
|
||||||
{
|
{
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
sprintf( savepath, "%s/Library/Application Support/rbdoom3bfg", getenv( "HOME" ) );
|
char* base_path = SDL_GetPrefPath( "", "rbdoom3bfg" );
|
||||||
|
if( base_path )
|
||||||
|
{
|
||||||
|
savepath = SDL_strdup( base_path );
|
||||||
|
SDL_free( base_path );
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
sprintf( savepath, "%s/.rbdoom3bfg", getenv( "HOME" ) );
|
sprintf( savepath, "%s/.rbdoom3bfg", getenv( "HOME" ) );
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue