mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Change trick to use LisaOS path separator.
This commit is contained in:
@@ -94,9 +94,9 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
foreach(CatalogEntry entry in catalogCache)
|
||||
{
|
||||
if(entry.parentID == dirId)
|
||||
// Do same trick as Mac OS X, replace filesystem '/' with ':'
|
||||
// Maybe as '-' is the path separator in Lisa OS I should do that
|
||||
contents.Add(GetString(entry.filename).Replace('/', ':'));
|
||||
// Do same trick as Mac OS X, replace filesystem '/' with '-',
|
||||
// as '-' is the path separator in Lisa OS
|
||||
contents.Add(GetString(entry.filename).Replace('/', '-'));
|
||||
}
|
||||
|
||||
return Errno.NoError;
|
||||
|
||||
Reference in New Issue
Block a user