Naming fixes.

This commit is contained in:
2020-07-20 21:11:32 +01:00
parent c58c0fd1f8
commit 6220425ac6
525 changed files with 15675 additions and 15524 deletions

View File

@@ -42,17 +42,15 @@ namespace Aaru.Filesystems.UCSDPascal
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : IReadOnlyFilesystem
{
byte[] bootBlocks;
byte[] catalogBlocks;
bool debug;
IMediaImage device;
List<PascalFileEntry> fileEntries;
bool mounted;
PascalVolumeEntry mountedVolEntry;
byte[] _bootBlocks;
byte[] _catalogBlocks;
bool _debug;
IMediaImage _device;
List<PascalFileEntry> _fileEntries;
bool _mounted;
PascalVolumeEntry _mountedVolEntry;
/// <summary>Apple II disks use 256 bytes / sector, but filesystem assumes it's 512 bytes / sector</summary>
uint multiplier;
uint _multiplier;
public FileSystemType XmlFsType { get; private set; }
public string Name => "U.C.S.D. Pascal filesystem";