From 1c0e621ce214001a48085d86fb0c676495d138bf Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Thu, 13 Jan 2022 14:37:14 -0700 Subject: [PATCH] support forwarders that pass in sd1:/ --- source/fileop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fileop.cpp b/source/fileop.cpp index 94d9cee..17d4778 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -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';