mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
file_path_special.c - cleanups
This commit is contained in:
parent
cb98cbc1bf
commit
53a0079aa2
1 changed files with 4 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue