1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Merge pull request #729 from TomHarte/JasminLED

Corrects Jasmin activity light.
This commit is contained in:
Thomas Harte 2020-01-16 23:16:55 -05:00 committed by GitHub
commit 8a8b8db5d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ void Jasmin::set_motor_on(bool on) {
motor_on_ = on;
if(drives_[selected_drive_]) drives_[selected_drive_]->set_motor_on(motor_on_);
if(observer_) {
observer_->set_led_status("Microdisc", on);
observer_->set_led_status("Jasmin", on);
}
}