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:
parent
cb2e3325cd
commit
5db4aa57b1
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue