mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code re-styling.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2016-07-28 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* Dir.cs:
|
||||
* File.cs:
|
||||
* Extent.cs:
|
||||
* Encoding.cs: Code re-styling.
|
||||
|
||||
2016-07-28 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* ODS.cs:
|
||||
|
||||
@@ -59,7 +59,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
ReadCatalog(fileId, out catalog);
|
||||
|
||||
foreach(CatalogEntry entry in catalog)
|
||||
contents.Add(GetString(entry.filename).Replace('/',':'));
|
||||
contents.Add(GetString(entry.filename).Replace('/', ':'));
|
||||
|
||||
if(debug && fileId == FILEID_DIRECTORY)
|
||||
{
|
||||
|
||||
@@ -118,7 +118,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
if(b == 0x00)
|
||||
break;
|
||||
|
||||
|
||||
uni += LisaRomanTable[b];
|
||||
}
|
||||
|
||||
|
||||
@@ -166,7 +166,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
file.unknown9 = BigEndianBitConverter.ToInt32(sector, 0x84);
|
||||
extentsOffset = 0x88;
|
||||
}
|
||||
|
||||
|
||||
for(int j = 0; j < 41; j++)
|
||||
{
|
||||
if(BigEndianBitConverter.ToInt16(sector, extentsOffset + j * 6 + 4) == 0)
|
||||
|
||||
@@ -192,7 +192,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
}
|
||||
|
||||
if(systemFileCache.TryGetValue(fileId, out buf) && !tags)
|
||||
return Errno.NoError;
|
||||
return Errno.NoError;
|
||||
|
||||
int count = 0;
|
||||
|
||||
@@ -254,7 +254,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
|
||||
if(!tags)
|
||||
systemFileCache.Add(fileId, buf);
|
||||
|
||||
|
||||
return Errno.NoError;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user