support forwarders that pass in sd1:/

This commit is contained in:
Daryl Borth 2022-01-13 14:37:14 -07:00
parent 1bd50c7036
commit 1c0e621ce2

View File

@ -459,7 +459,7 @@ void CreateAppPath(char * origpath)
int pos = 0;
// replace fat:/ with sd:/
if(strncmp(path, "fat:/", 5) == 0)
if(strncmp(path, "fat:/", 5) == 0 || strncmp(path, "sd1:/", 5) == 0)
{
pos++;
path[1] = 's';