summary refs log tree commit diff
path: root/src/drive.h
diff options
context:
space:
mode:
authorMaxwell Beck <max@rastertail.net>2025-05-29 16:01:53 -0500
committerMaxwell Beck <max@rastertail.net>2025-05-29 16:01:53 -0500
commit51e0bafe0304b201652fd32564138d6ca78a819d (patch)
treef12ad976557837a488ee6de65107bac215584dd9 /src/drive.h
parent22997d87d03825a9d470f70218b387682ebbb46b (diff)
fix: Definitely only support 35 track images (for now) HEAD main
Diffstat (limited to 'src/drive.h')
-rw-r--r--src/drive.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drive.h b/src/drive.h
index c7e02f2..d2e8dd8 100644
--- a/src/drive.h
+++ b/src/drive.h
@@ -6,8 +6,8 @@
 
 #define DRIVE_LOOKAHEAD 8
 
-extern const uint8_t SECTORS_PER_TRACK[40];
-extern const uint8_t BITRATE_PER_TRACK[40];
+extern const uint8_t SECTORS_PER_TRACK[35];
+extern const uint8_t BITRATES[4];
 extern const uint8_t GCR_CONV[16];
 
 typedef struct drive_s {