summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2017-08-25 16:14:26 +0200
committer angelosa <salese_corp_ltd@email.it>2017-08-25 16:14:48 +0200
commit088c71c63ff49369ab8a68388b3edbff728cb75d (patch)
treee0b577f62344ffc03aa565f5bee0c353f720f1ea
parent30d0fb9f94095bff4f05a672bb55ddcba15e28ae (diff)
Debug code removal (nw)
-rw-r--r--src/devices/video/jangou_blitter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/video/jangou_blitter.cpp b/src/devices/video/jangou_blitter.cpp
index de7524f1143..1e1a8a8b869 100644
--- a/src/devices/video/jangou_blitter.cpp
+++ b/src/devices/video/jangou_blitter.cpp
@@ -149,12 +149,14 @@ void jangou_blitter_device::trigger_write(void)
x = (m_x & 0xff);
y = (m_y & 0xff);
+ #if 0
// bail out if parameters are blantantly invalid (timing bug?)
if((x + w) > 256 || (y + h) > 256)
{
printf("%d %d %d %d %08x\n",x,y,w,h,src);
// return;
}
+ #endif
// lowest bit of src controls flipping / draw direction?
flipx = (m_src_addr & 1);