mirror of
https://github.com/KrisKennaway/pyapple2disk.git
synced 2025-02-20 04:28:56 +00:00
Fix a bug: data track/sector entries should only be skipped if track == 0, not sector == 0.
This commit is contained in:
parent
df17eac3df
commit
f6581c9078
@ -110,8 +110,10 @@ class FileMetadataSector(disklib.Sector):
|
||||
(t, s) = ds.unpack(
|
||||
'uint:8, uint:8'
|
||||
)
|
||||
if t and s:
|
||||
if t:
|
||||
# This may not be the end of the file, it can be sparse.
|
||||
data_track_sectors.append((t, s))
|
||||
# TODO: should I append a hole here if this is not the last entry?
|
||||
offset += 16
|
||||
|
||||
self.next_track = next_track
|
||||
|
Loading…
x
Reference in New Issue
Block a user