Skip to content

Commit ec57675

Browse files
committed
telstrat: Fix uninitialized variable
1 parent 954cbbe commit ec57675

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mame/tangerine/oric.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ void telestrat_state::machine_start()
453453
{
454454
machine_start_common();
455455
m_fdc_irq = m_fdc_drq = m_fdc_hld = false;
456-
m_acia_irq = false;
456+
m_acia_irq = m_via2_irq = false;
457457

458458
save_item(NAME(m_port_314));
459459
save_item(NAME(m_via2_a));

0 commit comments

Comments
 (0)