From 2846da93346b8c87e09f8ac69d0eaeaccd76d903 Mon Sep 17 00:00:00 2001 From: Rob McMullen Date: Sat, 13 Feb 2016 11:34:23 -0800 Subject: [PATCH] Fixed bitmap sector size --- atrcopy/spartados.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atrcopy/spartados.py b/atrcopy/spartados.py index cd869b9..5f75c7b 100755 --- a/atrcopy/spartados.py +++ b/atrcopy/spartados.py @@ -188,7 +188,7 @@ class SpartaDosDiskImage(DiskImageBase): else: num_boot = 3 boot_size = 128 - segment = RawSectorsSegment(b[start:start+count], s[start:start+count], self.first_bitmap, self.num_bitmap, count, boot_size, num_boot, self.sector_size, name="Bitmap") + segment = RawSectorsSegment(b[start:start+count], s[start:start+count], self.first_bitmap, self.num_bitmap, count, 0, 0, self.sector_size, name="Bitmap") segments.append(segment) return segments