1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Adds defences against double calls to end writing.

This commit is contained in:
Thomas Harte 2017-09-16 17:07:36 -04:00
parent 98751e6ac8
commit a85909198f
2 changed files with 14 additions and 10 deletions

View File

@ -104,9 +104,11 @@ void Controller::begin_writing(bool clamp_to_index_hole) {
}
void Controller::end_writing() {
if(!is_reading_) {
is_reading_ = true;
get_drive().end_writing();
}
}
bool Controller::is_reading() {
return is_reading_;

View File

@ -237,6 +237,7 @@ void Drive::write_bit(bool value) {
}
void Drive::end_writing() {
if(!is_reading_) {
is_reading_ = true;
if(!patched_track_) {
@ -250,3 +251,4 @@ void Drive::end_writing() {
cycles_since_index_hole_ %= get_input_clock_rate();
invalidate_track();
}
}