From 026101a2688a435f7785ae84c2f413c715365cd9 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 11 Aug 2017 10:46:50 -0400 Subject: [PATCH] Killed logic_extents_per_physical, since I don't know how to handle it, and instituted tracks, to allow a decision about short versus long allocation units. --- Storage/Disk/Parsers/CPM.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Disk/Parsers/CPM.hpp b/Storage/Disk/Parsers/CPM.hpp index 78f62d5b5..a51c8b5cc 100644 --- a/Storage/Disk/Parsers/CPM.hpp +++ b/Storage/Disk/Parsers/CPM.hpp @@ -22,9 +22,9 @@ namespace CPM { struct ParameterBlock { int sectors_per_track; + int tracks; int block_size; int first_sector; - int logic_extents_per_physical; uint16_t catalogue_allocation_bitmap; int reserved_tracks; };