mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
use memmove() instead of memcpy() in tms3556_device::draw_line() for now since it overlaps for exeltel (nw)
This commit is contained in:
parent
5c888da37d
commit
2855427afa
@ -531,7 +531,9 @@ void tms3556_device::draw_line(bitmap_ind16 &bmp, int line)
|
||||
|
||||
if (double_lines)
|
||||
{
|
||||
memcpy (ln2, ln, TMS3556_TOTAL_WIDTH * (TMS3556_DOUBLE_WIDTH ? 2 : 1));
|
||||
// TODO: this overlaps in exeltel - use memmove for now
|
||||
//memcpy(ln2, ln, TMS3556_TOTAL_WIDTH * (TMS3556_DOUBLE_WIDTH ? 2 : 1));
|
||||
memmove(ln2, ln, TMS3556_TOTAL_WIDTH * (TMS3556_DOUBLE_WIDTH ? 2 : 1));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user