diff options
author | aliaspider | 2014-11-29 18:25:57 +0100 |
---|---|---|
committer | aliaspider | 2014-11-29 18:25:57 +0100 |
commit | 9623641a84e2eb3914e272e011c00d4d54aa2816 (patch) | |
tree | ac4dfff53269b6724929d53199b1eaca79f1dede | |
parent | 5a370d8f1c9d4111625e0eacd3794e4d7cbc70c5 (diff) | |
download | snes9x2005-9623641a84e2eb3914e272e011c00d4d54aa2816.tar.gz snes9x2005-9623641a84e2eb3914e272e011c00d4d54aa2816.tar.bz2 snes9x2005-9623641a84e2eb3914e272e011c00d4d54aa2816.zip |
(windows) _makepath / _splitpath are already part of msvcrt
-rw-r--r-- | libretro.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -173,7 +173,7 @@ bool S9xInitUpdate() return (true); } - +#ifndef __WIN32__ void _makepath(char* path, const char* drive, const char* dir, const char* fname, const char* ext) { @@ -232,7 +232,7 @@ void _splitpath(const char* path, char* drive, char* dir, char* fname, strcpy(ext, ""); } } - +#endif const char* S9xGetFilename(const char* ex) { static char filename [PATH_MAX + 1]; |