From 2f894c54613229ec4d0a38037c67ba11452c136a Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 28 Aug 2014 18:12:13 +0100 Subject: [PATCH] Correct typo --- DiscImageChef/Plugins/AppleHFS.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscImageChef/Plugins/AppleHFS.cs b/DiscImageChef/Plugins/AppleHFS.cs index e7dcdf77a..c50fff857 100644 --- a/DiscImageChef/Plugins/AppleHFS.cs +++ b/DiscImageChef/Plugins/AppleHFS.cs @@ -86,7 +86,7 @@ namespace DiscImageChef.Plugins byte[] pString; - byte[] bb_sector = imagePlugin.ReadSector(2 + partitionOffset); // BB's first sector + byte[] bb_sector = imagePlugin.ReadSector(partitionOffset); // BB's first sector byte[] mdb_sector = imagePlugin.ReadSector(2 + partitionOffset); // MDB sector MDB.drSigWord = BigEndianBitConverter.ToUInt16(mdb_sector, 0x000); if (MDB.drSigWord != HFS_MAGIC)