From 5c74044e6291ee925a0072c10d04ae554691b0f6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 27 Apr 2018 21:38:08 -0400 Subject: [PATCH] Unifies constants. --- Storage/Disk/DiskImage/Formats/MSXDSK.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Storage/Disk/DiskImage/Formats/MSXDSK.cpp b/Storage/Disk/DiskImage/Formats/MSXDSK.cpp index 9fefffffd..7cd8b6bd1 100644 --- a/Storage/Disk/DiskImage/Formats/MSXDSK.cpp +++ b/Storage/Disk/DiskImage/Formats/MSXDSK.cpp @@ -11,8 +11,9 @@ #include "Utility/ImplicitSectors.hpp" namespace { - static const int sectors_per_track = 9; - static const int sector_size = 2; + const int sectors_per_track = 9; + const int sector_size = 2; + const off_t track_size = (128 << sector_size)*sectors_per_track; } using namespace Storage::Disk; @@ -22,7 +23,6 @@ MSXDSK::MSXDSK(const std::string &file_name) : // The only sanity check here is whether a sensible // geometry can be guessed. off_t file_size = file_.stats().st_size; - const off_t track_size = 512*9; // Throw if there would seemingly be an incomplete track. if(file_size % track_size) throw ErrorNotMSXDSK;