From 6324876768f321b6c69eecfc81c048607cb4b2a6 Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Thu, 13 Jan 2022 14:37:03 -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 e774407..7c7914d 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -463,7 +463,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';