From a0529687bdac10e05a2d78ecb3b0d0a63a46013e Mon Sep 17 00:00:00 2001 From: Michaelangel007 Date: Sat, 30 Dec 2017 10:36:30 -0800 Subject: [PATCH] Fix GET to parse paths properly --- prodos.tools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prodos.tools.cpp b/prodos.tools.cpp index 06ad832..4fa6161 100644 --- a/prodos.tools.cpp +++ b/prodos.tools.cpp @@ -501,7 +501,7 @@ int prodos_FindFile( ProDOS_VolumeHeader_t *volume, const char *path, int base = for( i = 0; i < nPathLen; i++ ) if( path[i] == '/' ) { - iDirName = i - 1; + iDirName = i; break; }