apple3: upload the font at the end of VBL, not the start [robj]

This commit is contained in:
arbee 2020-07-01 21:26:37 -04:00
parent 0d04b8b0cf
commit beb1e811b4

View File

@ -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();
}