diff options
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/sys_main.c | 2 | ||||
-rw-r--r-- | src/sys/sys_osx.m | 22 | ||||
-rw-r--r-- | src/sys/sys_unix.c | 17 | ||||
-rw-r--r-- | src/sys/sys_win32.c | 18 |
4 files changed, 1 insertions, 58 deletions
diff --git a/src/sys/sys_main.c b/src/sys/sys_main.c index 0773b483..170107ae 100644 --- a/src/sys/sys_main.c +++ b/src/sys/sys_main.c @@ -141,7 +141,7 @@ Sys_PIDFileName */ static char *Sys_PIDFileName( void ) { - return va( "%s/%s", Sys_TempPath( ), PID_FILENAME ); + return va( "%s/%s", Sys_DefaultHomePath( ), PID_FILENAME ); } /* diff --git a/src/sys/sys_osx.m b/src/sys/sys_osx.m index 1efd08c0..5d567a7f 100644 --- a/src/sys/sys_osx.m +++ b/src/sys/sys_osx.m @@ -37,28 +37,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #import <Cocoa/Cocoa.h> /* -================ -Sys_TempPath -================ -*/ -const char *Sys_TempPath( void ) -{ - static UInt8 posixPath[ MAX_OSPATH ]; - FSRef ref; - if( FSFindFolder( kOnAppropriateDisk, - kTemporaryFolderType, kCreateFolder, &ref ) == noErr ) - { - if( FSRefMakePath( &ref, posixPath, - sizeof( posixPath ) - 1 ) == noErr ) - { - return (const char *)posixPath; - } - } - - return "/tmp"; -} - -/* ============== Sys_Dialog diff --git a/src/sys/sys_unix.c b/src/sys/sys_unix.c index a712e41d..53a86354 100644 --- a/src/sys/sys_unix.c +++ b/src/sys/sys_unix.c @@ -71,23 +71,6 @@ char *Sys_DefaultHomePath(void) return homePath; } -#ifndef MACOS_X -/* -================ -Sys_TempPath -================ -*/ -const char *Sys_TempPath( void ) -{ - const char *TMPDIR = getenv( "TMPDIR" ); - - if( TMPDIR == NULL || TMPDIR[ 0 ] == '\0' ) - return "/tmp"; - else - return TMPDIR; -} -#endif - /* ================ Sys_Milliseconds diff --git a/src/sys/sys_win32.c b/src/sys/sys_win32.c index 25e18424..2fb8b006 100644 --- a/src/sys/sys_win32.c +++ b/src/sys/sys_win32.c @@ -125,24 +125,6 @@ char *Sys_DefaultHomePath( void ) /* ================ -Sys_TempPath -================ -*/ -const char *Sys_TempPath( void ) -{ - static TCHAR path[ MAX_PATH ]; - DWORD length; - - length = GetTempPath( sizeof( path ), path ); - - if( length > sizeof( path ) || length == 0 ) - return Sys_DefaultHomePath( ); - else - return path; -} - -/* -================ Sys_Milliseconds ================ */ |