# File lib/image_formats/D64.rb, line 44
def track_count
  track_count=0
  1.upto(@@offset_of_track.length-1) do |t|
     track_count=t if file_bytes.length>@@offset_of_track[t]
  end
  track_count
end