From 26710c988d012548712f96ca1a9c10278d1905d0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 25 Dec 2016 20:40:06 -0500 Subject: [PATCH] Modified SSD to ensure a fully-formatted surface is represented even if no track data is in the source file. This corrects the controller's sense of write success. --- Storage/Disk/Formats/SSD.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Storage/Disk/Formats/SSD.cpp b/Storage/Disk/Formats/SSD.cpp index 3eea47728..efb10b73b 100644 --- a/Storage/Disk/Formats/SSD.cpp +++ b/Storage/Disk/Formats/SSD.cpp @@ -63,8 +63,8 @@ std::shared_ptr SSD::get_uncached_track_at_position(unsigned int head, un new_sector.data.resize(256); fread(&new_sector.data[0], 1, 256, file_); - if(feof(file_)) - break; +// if(feof(file_)) +// new_sector.data[0]; sectors.push_back(std::move(new_sector)); }