1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-05 04:37:41 +00:00

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.

This commit is contained in:
Thomas Harte 2016-12-25 20:40:06 -05:00
parent acc35885cd
commit 26710c988d

View File

@ -63,8 +63,8 @@ std::shared_ptr<Track> 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));
}