mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
voodoo: Mark frame buffer as changed after direct lfb write. Fixes missing text during nbagold power on tests. (nw)
This commit is contained in:
parent
9fdde747fa
commit
bca9af1796
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user