voodoo: Mark frame buffer as changed after direct lfb write. Fixes missing text during nbagold power on tests. (nw)

This commit is contained in:
Ted Green 2018-11-14 18:02:31 -07:00
parent 9fdde747fa
commit bca9af1796

View File

@ -2957,6 +2957,8 @@ int32_t voodoo_device::lfb_direct_w(offs_t offset, uint32_t data, uint32_t mem_m
dest[bufoffs + 0] = data&0xffff;
if (ACCESSING_BITS_16_31)
dest[bufoffs + 1] = data>>16;
// Need to notify that frame buffer has changed
fbi.video_changed = true;
if (LOG_LFB) logerror("VOODOO.%d.LFB:write direct (%d,%d) = %08X & %08X\n", index, x, y, data, mem_mask);
return 0;
}