🐛Correct UCSD Pascal filesystem on Apple II disks.

(cherry picked from commit 38725e5625)
This commit is contained in:
2018-01-06 00:41:14 +00:00
parent f5ce818e85
commit d37f9d4d44
6 changed files with 158 additions and 123 deletions

View File

@@ -46,7 +46,7 @@ namespace DiscImageChef.Filesystems.UCSDPascal
if(!string.IsNullOrEmpty(path) && string.Compare(path, "/", StringComparison.OrdinalIgnoreCase) != 0)
return Errno.NotSupported;
contents = fileEntries.Select(ent => StringHandlers.PascalToString(ent.filename, CurrentEncoding)).ToList();
contents = fileEntries.Select(ent => StringHandlers.PascalToString(ent.Filename, CurrentEncoding)).ToList();
if(debug)
{