mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
apple3: upload the font at the end of VBL, not the start [robj]
This commit is contained in:
parent
0d04b8b0cf
commit
beb1e811b4
@ -480,7 +480,8 @@ void apple3_state::apple3_c0xx_w(offs_t offset, uint8_t data)
|
||||
|
||||
WRITE_LINE_MEMBER(apple3_state::vbl_w)
|
||||
{
|
||||
if ((state) && (m_charwrt))
|
||||
// do the font upload at the end of VBL, not the start
|
||||
if ((!state) && (m_charwrt))
|
||||
{
|
||||
apple3_write_charmem();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user