1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-24 13:17:41 +00:00

Remove more get_s.

This commit is contained in:
Thomas Harte
2025-02-26 20:26:06 -05:00
parent 47bd4dade5
commit ff86cbd48e
55 changed files with 132 additions and 132 deletions

View File

@@ -184,7 +184,7 @@ void DiskII::decide_clocking_preference() {
}
bool DiskII::is_write_protected() const {
return (stepper_mask_ & 2) || drives_[active_drive_].get_is_read_only();
return (stepper_mask_ & 2) || drives_[active_drive_].is_read_only();
}
void DiskII::set_state_machine(const std::vector<uint8_t> &state_machine) {