mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
Debug code removal (nw)
This commit is contained in:
parent
30d0fb9f94
commit
088c71c63f
@ -149,12 +149,14 @@ void jangou_blitter_device::trigger_write(void)
|
|||||||
x = (m_x & 0xff);
|
x = (m_x & 0xff);
|
||||||
y = (m_y & 0xff);
|
y = (m_y & 0xff);
|
||||||
|
|
||||||
|
#if 0
|
||||||
// bail out if parameters are blantantly invalid (timing bug?)
|
// bail out if parameters are blantantly invalid (timing bug?)
|
||||||
if((x + w) > 256 || (y + h) > 256)
|
if((x + w) > 256 || (y + h) > 256)
|
||||||
{
|
{
|
||||||
printf("%d %d %d %d %08x\n",x,y,w,h,src);
|
printf("%d %d %d %d %08x\n",x,y,w,h,src);
|
||||||
// return;
|
// return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// lowest bit of src controls flipping / draw direction?
|
// lowest bit of src controls flipping / draw direction?
|
||||||
flipx = (m_src_addr & 1);
|
flipx = (m_src_addr & 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user