mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-25 15:19:53 -06:00
minor fix
This commit is contained in:
@ -202,7 +202,7 @@ FILE* OpenLocalFile(const char* path, const char* mode)
|
||||
#ifdef __WIN32__
|
||||
if (pathlen > 3)
|
||||
{
|
||||
if (path[1] == ':' && path[2] == '\\')
|
||||
if (path[1] == ':' && (path[2] == '\\' || path[2] == '/'))
|
||||
return OpenFile(path, mode);
|
||||
}
|
||||
#else
|
||||
|
Reference in New Issue
Block a user