Fix GET to parse paths properly

This commit is contained in:
Michaelangel007 2017-12-30 10:36:30 -08:00
parent 1ac7e2f26a
commit a0529687bd
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}