Skip to content

Commit 0fb58f4

Browse files
committed
When the floppy is active (i.e., when the motor is actually on), also indicate this on the LED on the panel layout.
1 parent 6897837 commit 0fb58f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/mame/ensoniq/esq5505.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,10 @@ TIMER_CALLBACK_MEMBER(esq5505_state::floppy_motor_on)
362362
{
363363
floppy_image_device *floppy = m_floppy_connector->get_device();
364364
if (floppy)
365+
{
365366
floppy->mon_w(motor_on ? CLEAR_LINE : ASSERT_LINE); // active low
367+
m_panel->set_floppy_active(motor_on);
368+
}
366369
}
367370
}
368371

0 commit comments

Comments
 (0)