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