1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Control on simu path to avoid double // and search a file over the

network ...
This commit is contained in:
bsongis 2014-04-10 16:14:07 +02:00
parent cb2e3325cd
commit 5db4aa57b1

View file

@ -466,10 +466,11 @@ FATFS g_FATFS_Obj;
char *convertSimuPath(const char *path)
{
static char result[1024];
if (path[0] == '/')
if (path[0] == '/' && strcmp(simuSdDirectory, "/") != 0)
sprintf(result, "%s%s", simuSdDirectory, path);
else
strcpy(result, path);
return result;
}