From d30f83871d9629e3a25a5586292af471c8659c77 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 16 Jan 2020 22:59:43 -0500 Subject: [PATCH] Corrects Jasmin activity light. --- Machines/Oric/Jasmin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Oric/Jasmin.cpp b/Machines/Oric/Jasmin.cpp index 7aec9f014..3a53180c4 100644 --- a/Machines/Oric/Jasmin.cpp +++ b/Machines/Oric/Jasmin.cpp @@ -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); } }