mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-19 19:16:34 +00:00
Remove more get_s.
This commit is contained in:
@@ -129,7 +129,7 @@ void Drive::set_head(int head) {
|
||||
}
|
||||
}
|
||||
|
||||
int Drive::get_head_count() const {
|
||||
int Drive::head_count() const {
|
||||
return available_heads_;
|
||||
}
|
||||
|
||||
@@ -151,8 +151,8 @@ float Drive::get_time_into_track() const {
|
||||
return float(cycles_since_index_hole_) / (float(get_input_clock_rate()) * rotational_multiplier_);
|
||||
}
|
||||
|
||||
bool Drive::get_is_read_only() const {
|
||||
if(disk_) return disk_->get_is_read_only();
|
||||
bool Drive::is_read_only() const {
|
||||
if(disk_) return disk_->is_read_only();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user