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';