mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Rename cylinder to track throughout (mostly).
This commit is contained in:
@@ -82,12 +82,12 @@ public:
|
||||
{
|
||||
std::vector<std::shared_ptr<const Sector>> sectors;
|
||||
|
||||
if ((location.logicalCylinder >= 0) && (location.logicalCylinder < 77))
|
||||
if ((location.logicalTrack >= 0) && (location.logicalTrack < 77))
|
||||
{
|
||||
for (int sectorId = 0; sectorId < 16; sectorId++)
|
||||
{
|
||||
const auto& sector = image.get(
|
||||
location.logicalCylinder, location.head, sectorId);
|
||||
location.logicalTrack, location.head, sectorId);
|
||||
if (sector)
|
||||
sectors.push_back(sector);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user