Bug fix for ProDOS freemap

This commit is contained in:
Leeland Heins 2019-01-16 13:47:10 -06:00 committed by GitHub
parent eff4a1e106
commit 84556303e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1091,9 +1091,9 @@ sub get_vol_bit_map {
foreach my $blk (@blks) {
#print sprintf("%02x ", $blk);
push @blocks, $blk;
last if $trk++ > $num_tracks;
last if $trk++ >= $num_tracks;
}
print "\n";
#print "\n";
}
}