mirror of
https://github.com/holub/mame
synced 2025-10-07 01:16:22 +03:00
Fix digitalker speed
The interrupt command was triggered at the end of the post-sample blank instead of at the start. It's a tight guess but is on par with real hardware footage of Scorpion...
This commit is contained in:
parent
da8ef95cd7
commit
55ded79b56
@ -516,6 +516,7 @@ void digitalker_device::digitalker_step()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if(m_stop_after == 1) {
|
} else if(m_stop_after == 1) {
|
||||||
|
digitalker_set_intr(1);
|
||||||
m_bpos = 0xffff;
|
m_bpos = 0xffff;
|
||||||
m_zero_count = 81920;
|
m_zero_count = 81920;
|
||||||
m_stop_after = 2;
|
m_stop_after = 2;
|
||||||
@ -525,7 +526,6 @@ void digitalker_device::digitalker_step()
|
|||||||
m_repeats = 0;
|
m_repeats = 0;
|
||||||
} else {
|
} else {
|
||||||
m_stop_after = 0;
|
m_stop_after = 0;
|
||||||
digitalker_set_intr(1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user