aboutsummaryrefslogtreecommitdiff
path: root/libretro.c
diff options
context:
space:
mode:
authoraliaspider2014-11-29 18:25:57 +0100
committeraliaspider2014-11-29 18:25:57 +0100
commit9623641a84e2eb3914e272e011c00d4d54aa2816 (patch)
treeac4dfff53269b6724929d53199b1eaca79f1dede /libretro.c
parent5a370d8f1c9d4111625e0eacd3794e4d7cbc70c5 (diff)
downloadsnes9x2005-9623641a84e2eb3914e272e011c00d4d54aa2816.tar.gz
snes9x2005-9623641a84e2eb3914e272e011c00d4d54aa2816.tar.bz2
snes9x2005-9623641a84e2eb3914e272e011c00d4d54aa2816.zip
(windows) _makepath / _splitpath are already part of msvcrt
Diffstat (limited to 'libretro.c')
-rw-r--r--libretro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libretro.c b/libretro.c
index 39930cd..9aad458 100644
--- a/libretro.c
+++ b/libretro.c
@@ -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];