Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nes-containers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'FdsDiskFile.cs')
-rw-r--r--FdsDiskFile.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/FdsDiskFile.cs b/FdsDiskFile.cs
index c3c2e53..88e3dce 100644
--- a/FdsDiskFile.cs
+++ b/FdsDiskFile.cs
@@ -62,8 +62,8 @@ namespace com.clusterrr.Famicom.Containers
/// <param name="dataBlock">File data block</param>
public FdsDiskFile(FdsBlockFileHeader headerBlock, FdsBlockFileData dataBlock)
{
- this.HeaderBlock = headerBlock;
- this.DataBlock = dataBlock;
+ this.headerBlock = headerBlock;
+ this.dataBlock = dataBlock;
headerBlock.FileSize = (ushort)dataBlock.Data.Count();
}
@@ -72,8 +72,8 @@ namespace com.clusterrr.Famicom.Containers
/// </summary>
public FdsDiskFile()
{
- this.HeaderBlock = new FdsBlockFileHeader();
- this.DataBlock = new FdsBlockFileData();
+ this.headerBlock = new FdsBlockFileHeader();
+ this.dataBlock = new FdsBlockFileData();
HeaderBlock.FileSize = (ushort)DataBlock.Data.Count();
}