1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +00:00

Revokes direct visibility of is_read_only_ to subclasses of FileHolder.

This commit is contained in:
Thomas Harte
2017-10-03 19:36:06 -04:00
parent 35705c5345
commit 7b01c1bee6
11 changed files with 17 additions and 17 deletions

View File

@@ -20,10 +20,6 @@ void MFMSectorDump::set_geometry(int sectors_per_track, uint8_t sector_size, boo
is_double_density_ = is_double_density;
}
bool MFMSectorDump::get_is_read_only() {
return is_read_only_;
}
std::shared_ptr<Track> MFMSectorDump::get_track_at_position(unsigned int head, unsigned int position) {
uint8_t sectors[(128 << sector_size_)*sectors_per_track_];