mirror of
https://github.com/robmcmullen/atrcopy.git
synced 2024-12-27 23:32:06 +00:00
Atari DOS disks should start from sector 1
This commit is contained in:
parent
eda250185e
commit
28f2d11be2
@ -320,7 +320,7 @@ class AtrHeader(BaseHeader):
|
||||
file_format = "ATR"
|
||||
|
||||
def __init__(self, bytes=None, sector_size=128, initial_sectors=3, create=False):
|
||||
BaseHeader.__init__(self, sector_size, initial_sectors, 360)
|
||||
BaseHeader.__init__(self, sector_size, initial_sectors, 360, 1)
|
||||
if create:
|
||||
self.header_offset = 16
|
||||
self.check_size(0)
|
||||
|
Loading…
Reference in New Issue
Block a user