mirror of
https://github.com/libretro/RetroArch
synced 2025-03-23 01:21:47 +00:00
file_path_special.c - cleanups
This commit is contained in:
parent
cb98cbc1bf
commit
53a0079aa2
@ -63,12 +63,13 @@ void fill_pathname_expand_special(char *out_path,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ((in_path[0] == ':') &&
|
else if ((in_path[0] == ':') &&
|
||||||
#ifdef _WIN32
|
(
|
||||||
((in_path[1] == '/') || (in_path[1] == '\\'))
|
|
||||||
#else
|
|
||||||
(in_path[1] == '/')
|
(in_path[1] == '/')
|
||||||
|
#ifdef _WIN32
|
||||||
|
|| (in_path[1] == '\\')
|
||||||
#endif
|
#endif
|
||||||
)
|
)
|
||||||
|
)
|
||||||
{
|
{
|
||||||
size_t src_size;
|
size_t src_size;
|
||||||
char application_dir[PATH_MAX_LENGTH] = {0};
|
char application_dir[PATH_MAX_LENGTH] = {0};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user