From 603f018a336d3c693acb81876ed98199c14ae9e8 Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Thu, 13 Jan 2022 14:37:31 -0700 Subject: [PATCH] support forwarders that pass in sd1:/ --- source/fileop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/fileop.cpp b/source/fileop.cpp index 6fdcdb0..d913708 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -459,8 +459,8 @@ void CreateAppPath(char * origpath) int pos = 0; - // replace fat:/ with sd:/ - if(strncmp(path, "fat:/", 5) == 0) + // replace fat:/ or sd1:/ with sd:/ + if(strncmp(path, "fat:/", 5) == 0 || strncmp(path, "sd1:/", 5) == 0) { pos++; path[1] = 's';