From e7b213604e2f99126e823fb8fa26be1dcfed451d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 29 Aug 2022 11:40:18 -0400 Subject: [PATCH] Add comments. --- Storage/Disk/DiskImage/Formats/2MG.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Storage/Disk/DiskImage/Formats/2MG.cpp b/Storage/Disk/DiskImage/Formats/2MG.cpp index b7839b9ae..b48590b60 100644 --- a/Storage/Disk/DiskImage/Formats/2MG.cpp +++ b/Storage/Disk/DiskImage/Formats/2MG.cpp @@ -65,12 +65,15 @@ Disk2MG::DiskOrMassStorageDevice Disk2MG::open(const std::string &file_name) { // TODO: DOS 3.3 sector order. break; case 1: - // ProDOS order, which could still mean Macintosh-style or Apple II-style. Try them both. + // 'ProDOS order', which could still mean Macintosh-style (ie. not ProDOS, but whatever) + // or Apple II-style. Try them both. try { return new DiskImageHolder(file_name, MacintoshIMG::FixedType::GCR, data_start, data_size); } catch(...) {} // TODO: Apple II-style. + + // TODO: hard-disk image. break; case 2: // TODO: NIB data (yuck!).