cSDL/src/video/prizm/SDL_prizmutils.c

18 lines
311 B
C
Raw Normal View History

2022-04-18 22:36:07 +02:00
#include <gint/gint.h>
#include "SDL_video.h"
#include "SDL_prizmvideo.h"
int nSDL_EnableRelativePaths(char **argv)
{
/*
char buf[NSP_BUF_SIZE], *p;
strcpy(buf, argv[0]);
p = strrchr(buf, '/');
if ( ! p )
return(-1);
*p = '\0';
return(NU_Set_Current_Dir(buf) ? -1 : 0);
*/
return(0);
}