use memmove() instead of memcpy() in tms3556_device::draw_line() for now since it overlaps for exeltel (nw)

This commit is contained in:
Oliver Stöneberg 2013-05-21 18:07:57 +00:00
parent 5c888da37d
commit 2855427afa

View File

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