1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +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

@@ -41,5 +41,5 @@ void DiskIIDrive::set_control_lines(const int lines) {
}
bool DiskIIDrive::read() {
return !!(stepper_mask_ & 2) || get_is_read_only();
return !!(stepper_mask_ & 2) || is_read_only();
}